程序
public class Project_X
{
public static void main(String[] args){
byte x;
int a=270;
double b =128.128;
System.out.println("int converted to byte");
x=(byte) a;
System.out.println("a and x "+ a +" "+x);
System.out.println("double converted to int");
a=(int) b;
System.out.println("b and a "+ b +" "+a);
System.out.println("n double converted to byte");
x=(byte) b;
System.out.println("b and x "+b +" "+x);
}
}
错误获取
非法角色:\ 160
答案 0 :(得分:1)
使用复制文本中包含“时髦”符号的工具(可能是Web浏览器)复制粘贴程序代码。例如。不间断的空间。
公开这些字符的一种方法如下:
答案 1 :(得分:0)
\u160
是non-breaking space。您是否尝试删除并重新输入该行?