62,628
社区成员
发帖
与我相关
我的任务
分享

public class Demo {
public static void main(String[] args) {
if (args.length == 0) {
System.out.println("no args.");
}
}
}像楼主的代码层级多,又没有排版,没法看。byte a = 1;
//byte b = +a;//错误,cannot convert from int to byte
int c = +a;
byte d = (byte)+a;