标签:style blog color 使用 ar div log sp on
switch(value), 这个value只能使用能够转int类型的类型。如 char String int enum >>> Only convertible int values, strings or enum variables are permitted
case 必须和value的类型一致。
public class Test { public static final String x = "xx"; public static void main(String [] args) { String value = "123"; switch(value){ case x : System.out.println("a"); } } }
标签:style blog color 使用 ar div log sp on
原文地址:http://www.cnblogs.com/shouwangzhe-/p/3949756.html