在 Python 中,“not in”成员运算符如果在指定的序列中找不到变量,则评估结果为真,否则为假。例如 >>> a = 10 >>> b = 4 >>> l1 = [1,2,3,4,5] >>> a not in l1 True >>> b not in l1 False 由于“a”不属于 l1,因此 a not in b 返回 True。但是,b 可以在 l1 中找到,因此 b not in l1 返回 False
String 类的 toString() 方法返回它本身的字符串。示例在线演示import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Tutorialspoint.com"); System.out.print("返回值:"); System.out.println(Str.toString()); } }输出返回值:Welcome to Tutorialspoint.comString 类的 valueOf() 方法的变体接受不同的变量,例如整数、浮点数、布尔值等,并将它们转换为 String。示例在线演示public class Sample { public static void main(String args[]){ int i = 200; float f = 12.0f; ... 阅读更多
可以使用 String 类的 toUpperCase() 和 toLowerCase() 方法更改大小写。示例在线演示public class Sample { public static void main(String args[]){ String str = "Hello how are you"; String strUpper = str.toUpperCase(); System.out.println("小写转大写:" + strUpper); String strLower = str.toLowerCase(); System.out.println("大写转小写:" + strLower); } }输出小写转大写:HELLO HOW ARE YOU 大写转小写:hello how are you