2013-07-13 35 views
1

程序非法字符與藍Ĵ

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

即時開始,已經是我想不通的問題。請幫助 –

+2

什麼行會導致錯誤?請發佈格式化的代碼,而不是所有左對齊的代碼,因爲這很難閱讀。 –

+0

我跑上面的程序並沒有得到其他 – Kon

回答

1

使用包含複製文本中的「時髦」符號的工具(可能是網絡瀏覽器)複製粘貼程序代碼。例如。非破壞的空間。揭露這些字符

的一種方法如下:

  1. 轉到http://www.asciitohex.com/
  2. 複製 - 粘貼代碼到輸入框中
  3. 點擊轉換從的「HTML
  4. 複製和粘貼文本實體「輸出在右下角
  5. 從代碼中刪除所有& nbsp; -s和其他奇怪的東西
+0

這聽起來很囉嗦,但它意味着一個真正的建議:只是不要複製/粘貼代碼示例。 – chaseadamsio