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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 郑世光 中级黑马   /  2012-10-10 11:54  /  1416 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 郑世光 于 2012-10-10 13:35 编辑

下面的代码只有DatagramSocket datareceive=new DatagramSocket(10009);和 DatagramSocket datasend=new DatagramSocket(); 抛异常,但是只将这2句话进行try处理的话,下面的datareceive和datasend都提示没有初始化,好像他们的作用域只在try块中了!这是为什么?                       
               public static void main(String[] args)  {

                DatagramSocket datareceive;
                DatagramSocket datasend;
                try {
                        datareceive = new DatagramSocket(10009);
                        datasend = new DatagramSocket();
                } catch (SocketException e) {
                        e.printStackTrace();
                }
                Send send=new Send(datasend);//  The local variable datasend may not have been initialized  
                Receive rece=new Receive(datareceive);//The local variable datasend may not have been initialized  可是上面在try中已经创建了啊

                Thread t1=new Thread(send);
                Thread t2=new Thread(rece);
                t1.start();
                t2.start();

        }

评分

参与人数 1技术分 +1 收起 理由
唐志兵 + 1 赞一个!

查看全部评分

2 个回复

倒序浏览
如果你的代码出现了异常 程序是不会执行try中的语句的 而是执行catch中的语句的这样try没被执行 当然也没初始化啊
回复 使用道具 举报
public static void main(String[] args)  {

                DatagramSocket datareceive;
                DatagramSocket datasend;
                try {
                        datareceive = new DatagramSocket(10009);
                        datasend = new DatagramSocket();
                } catch (SocketException e) {
                        e.printStackTrace();
                }
                Send send=new Send(datasend);//  The local variable datasend may not have been initialized  
                Receive rece=new Receive(datareceive);//The local variable datasend may not have been initialized  可是上面在try中已经创建了啊

                Thread t1=new Thread(send);
                Thread t2=new Thread(rece);
                t1.start();
                t2.start();

        }

当你trycatch后datareceive 和datasend 就是局部变量,你在外面使用他们,当然要定义了。

评分

参与人数 1技术分 +1 收起 理由
唐志兵 + 1 赞一个!

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马