A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 戴振良 黑马帝   /  2012-3-30 22:04  /  1970 人查看  /  6 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. import java.io.RandomAccessFile;
  2. public class Test {
  3.         byte b;
  4.         public Test(byte b) {
  5.                 this.b = b;
  6.         }
  7.         public static void main(String[] args) {
  8.             Test t = new Test(127);
  9.     }
  10. }
复制代码
提示说找不到符号,搞不懂什么原因呀?

6 个回复

倒序浏览
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型数据
        }

}
回复 使用道具 举报
byte能用作参数,只是这里你没有强转
Test t = new Test((byte) 127)进行强转。
回复 使用道具 举报
在java中,整数默认是int类型的,这样是要强转的
回复 使用道具 举报
byte可以做参数的。你构造方法中 public Test(byte b) { this.b = b; } 参数是byte型的;但是 Test t = new Test(127) 里面传递的是int型的,你需要将int型的强转为byte型的,代码改为Test t = new Test((byte)127) 就没有错误了
回复 使用道具 举报
这127又没超过一个字节,我直接byte b=127,然后b=2,b=5,这些它都不叫我转换,这些也不直接给的整数吗?{:soso__8961432591078930798_3:}
看来就沙发说的最好了,不过还是要谢谢大家!
回复 使用道具 举报
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);
}
}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马