这是我尝试过的一个例子。
static TARGET: &'static str = "a string";
fn main () {
printfln!("%?", TARGET.eq(~"other string"));
}
我equiv
也看了,但没有运气。我与 TARGET 比较的字符串必须是拥有的指针字符串。
这是我尝试过的一个例子。
static TARGET: &'static str = "a string";
fn main () {
printfln!("%?", TARGET.eq(~"other string"));
}
我equiv
也看了,但没有运气。我与 TARGET 比较的字符串必须是拥有的指针字符串。