gpt4 book ai didi

java - Blue J 的非法角色

转载 作者:太空宇宙 更新时间:2023-11-04 07:31:30 25 4
gpt4 key购买 nike

计划

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);
}
}

错误获取

illegal character:\160

最佳答案

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

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

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

关于java - Blue J 的非法角色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17626909/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com