提示说找不到符号,搞不懂什么原因呀?作者: 陈超 时间: 2012-3-30 22:16
public class Test{
byte b;
public Test(byte b) {
this.b = b;
}
public static void main(String[] args) {
Test t = new Test((byte) 127);//构造方法传参数是要将int型数据强转为byte型数据
}
}作者: 肖发腾 时间: 2012-3-30 22:23
byte能用作参数,只是这里你没有强转
Test t = new Test((byte) 127)进行强转。 作者: 王德南 时间: 2012-3-30 22:33
在java中,整数默认是int类型的,这样是要强转的作者: 王运科 时间: 2012-3-30 22:34
byte可以做参数的。你构造方法中 public Test(byte b) { this.b = b; } 参数是byte型的;但是 Test t = new Test(127) 里面传递的是int型的,你需要将int型的强转为byte型的,代码改为Test t = new Test((byte)127) 就没有错误了 作者: 戴振良 时间: 2012-3-31 00:08
这127又没超过一个字节,我直接byte b=127,然后b=2,b=5,这些它都不叫我转换,这些也不直接给的整数吗?{:soso__8961432591078930798_3:}
看来就沙发说的最好了,不过还是要谢谢大家!作者: 何万县 时间: 2012-3-31 20:36
import java.io.RandomAccessFile;
public class Test {
byte b;
public Test(byte b) {
this.b = b;
}
public static void main(String[] args) {
Test t = new Test(127);
}
}
找不到符号是因为,127是int型的,在你的构造函数里只有一个参数为byte型的的构造函数,所以,我们最好可以实现
import java.io.RandomAccessFile;
public class Test {
byte b;
public Test(byte b) {
this.b = b;
}
public static void main(String[] args) {
byte a=127;//强制转换没有此方式好
Test t = new Test(a);
}
}