Blue J的非法角色

时间:2013-07-13 04:14:01

标签: java variables project type-conversion bluej

程序

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

2 个答案:

答案 0 :(得分:1)

使用复制文本中包含“时髦”符号的工具(可能是Web浏览器)复制粘贴程序代码。例如。不间断的空间。

公开这些字符的一种方法如下:

  1. 转到http://www.asciitohex.com/
  2. 将代码复制粘贴到输入框
  3. 点击转换
  4. 从右下角的“Html实体”输出中复制粘贴文本
  5. 从代码
  6. 中删除所有& nbsp; -s和其他奇怪的内容

答案 1 :(得分:0)

\u160non-breaking space。您是否尝试删除并重新输入该行?