这有什么问题;
public class cast {
public static void main(String args[]){
double x, y;
int i;
char c;
x = 10.0;
y = 3.0;
i = (int) (x / y);
System.out.println("Integer outcome of x / y = " + i);
i = 100; //Assaigning new value to i.
b = (byte) i;
System.out.println("The value of i is: " + b);
}
}
它给了我以下错误信息;b 无法解析为变量。
虽然我完全按照他们在书中所做的(我认为,重新阅读书籍说明五遍......)