找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

搜索
CDD 法语助手
楼主: 大将军猴子

水区抢楼活动(结束)圣诞福袜勋章一个免费试吃名额等

13190
回复
190370
查看
  [ 复制链接 ]

新浪微博达人勋

我要袜子   
2010-12-23 22:10:54

使用道具 举报

新浪微博达人勋

。。。
2010-12-23 22:10:55

使用道具 举报

新浪微博达人勋

2010-12-23 22:11:08

使用道具 举报

新浪微博达人勋

class Person
{
        int x = 0 ;
};

public class OODemo09
{
        public static void main(String args[])
        {
                Person p1 = new Person() ;
                p1.x = 30 ;
                fun(p1) ;
                System.out.println(p1.x) ;
        }
        public static void fun(Person p2)
        {
                p2.x = 50 ;
        }
};
2010-12-23 22:11:09

使用道具 举报

新浪微博达人勋

(rf4rf)aaa
2010-12-23 22:11:09

使用道具 举报

新浪微博达人勋

2010-12-23 22:11:25

使用道具 举报

新浪微博达人勋

。。。(rf13rf)
2010-12-23 22:11:26

使用道具 举报

新浪微博达人勋

public class OODemo10
{
        public static void main(String args[])
        {
                String str1 = "魔乐" ;
                fun(str1) ;
                System.out.println(str1) ;
        }
        public static void fun(String str2)
        {
                str2 += "李兴华" ;
        }
};
2010-12-23 22:11:30

使用道具 举报

新浪微博达人勋

我要袜子   
2010-12-23 22:11:31

使用道具 举报

新浪微博达人勋

回复 amyli071 的帖子

恩,一会儿就撤了,不行明儿咱自己买一双。
2010-12-23 22:11:37

使用道具 举报

新浪微博达人勋

2010-12-23 22:11:50

使用道具 举报

新浪微博达人勋

class Person
{
        String name ;
};
public class OODemo11
{
        public static void main(String args[])
        {
                Person p1 = new Person() ;
                p1.name = "魔乐" ;
                fun(p1) ;
                System.out.println(p1.name) ;
        }
        public static void fun(Person p2)
        {
                p2.name = "李兴华" ;
        }
};
2010-12-23 22:11:51

使用道具 举报

新浪微博达人勋

]呵呵,大家现在似乎都不活跃了。加油啊,一起来盖啊。
2010-12-23 22:12:17

使用道具 举报

新浪微博达人勋

// 回避一种写法
// 如果程序中非要使用此种类型的代码,则可以使用StringBuffer代替
// StringBuffer与String的本质区别,在于StringBuffer可以改变
public class OODemo12
{
        public static void main(String args[])
        {
                String str = "A" ;
                for(int i=0;i<100;i++)
                {
                        str += i ;
                }
                System.out.println(str) ;
        }
};
2010-12-23 22:12:17

使用道具 举报

新浪微博达人勋

2010-12-23 22:12:21

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部