62,634
社区成员




byte b = 'b';
System.out.println(b);
byte b = '中';
System.out.println(b);
char a='a';
byte b=(char)a;//Type mismatch: cannot convert from char to byte
char b='中';
byte bb=(char)b;//Type mismatch: cannot convert from char to byte