标题:this的问题
取消只看楼主
qq181982453
Rank: 2
等 级:论坛游民
帖 子:45
专家分:16
注 册:2010-6-10
结帖率:22.22%
 问题点数:0 回复次数:0 
this的问题
class cy
{
      int x,y;
   cy(int a,int b)
{
      x=a;
      y=b;
}
    void output(int x,int y)
{
      x=x;
      y=y;
      System.out.println("x"+x);
      System.out.println("y"+y);
}
    void output()
{
      System.out.println(this.x);
      System.out.println(this.y);
}
    public static void main(String[] args)
{
      cy pt=new cy(5,5);
      pt.output(6,6);
      pt.output();
  }
}


我觉得输出是
x6
y6
6
6
啊,结果跟我想的不一样,希望有人指点下。
搜索更多相关主题的帖子: void public 
2010-11-09 16:20



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-325399-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.081416 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved