找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

(rf6rf)袜子~
2010-12-23 22:09:29

使用道具 举报

新浪微博达人勋

(rf12rf)
2010-12-23 22:09:40

使用道具 举报

新浪微博达人勋

抢楼
2010-12-23 22:09:43

使用道具 举报

新浪微博达人勋

我要袜子   
2010-12-23 22:09:53

使用道具 举报

新浪微博达人勋

(rf2rf)
2010-12-23 22:09:56

使用道具 举报

新浪微博达人勋

class Person
{
        // private声明的属性只能在本类看见
        // 名字
        private String name ;
        // 年龄
        private int age ;
        Person()
        {}
        // 加入一个构造方法
        Person(String n,int a)
        {
                // 为类中的属性初始化
                this.setName(n) ;
                this.setAge(a) ;
                System.out.println("** 构造方法被调用...") ;
        }

        // 加入一系列的setter和getter方法
        public void setName(String n)
        {
                name = n ;
        }
        public void setAge(int a)
        {
                if(a>0&&a<150)
                {
                        age = a ;
                }
                else
                {
                        age = -1 ;
                }
        }
        public String getName()
        {
                return name ;
        }
        public int getAge()
        {
                return age ;
        }

        public String shout()
        {
                return "姓名:"+this.name+"\n年龄:"+this.age ;
        }
};
// 要使用类需要通过对象
public class OODemo06
{
        public static void main(String args[])
        {
                // Person lxh1 = new Person("李兴华",-30) ;
                Person lxh1 = new Person() ;
                lxh1.setName("李兴华") ;
                // 从逻辑上而言代码已经是错误的
                lxh1.setAge(30) ;
                System.out.println(lxh1.shout()) ;
        }
};
2010-12-23 22:09:57

使用道具 举报

新浪微博达人勋

倦鸟 发表于 2010-12-23 23:03
水吧水吧不是罪

水水就行啊,孩子第一啊~~
2010-12-23 22:10:09

使用道具 举报

新浪微博达人勋

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

使用道具 举报

新浪微博达人勋

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

使用道具 举报

新浪微博达人勋

我要来抢福袜
2010-12-23 22:10:18

使用道具 举报

新浪微博达人勋

class Person
{
        // private声明的属性只能在本类看见
        // 名字
        private String name ;
        // 年龄
        private int age ;
        Person()
        {}
        // 加入一个构造方法
        Person(String n,int a)
        {
                // 为类中的属性初始化
                this.setName(n) ;
                this.setAge(a) ;
                System.out.println("** 构造方法被调用...") ;
        }

        // 加入一系列的setter和getter方法
        public void setName(String n)
        {
                name = n ;
        }
        public void setAge(int a)
        {
                if(a>0&&a<150)
                {
                        age = a ;
                }
                else
                {
                        age = -1 ;
                }
        }
        public String getName()
        {
                return name ;
        }
        public int getAge()
        {
                return age ;
        }

        public String shout()
        {
                return "姓名:"+this.name+"\n年龄:"+this.age ;
        }
};
// 要使用类需要通过对象
public class OODemo07
{
        public static void main(String args[])
        {
                System.out.println(new Person("李兴华",30).shout()) ;
        }
};
2010-12-23 22:10:23

使用道具 举报

新浪微博达人勋

!!!
2010-12-23 22:10:24

使用道具 举报

新浪微博达人勋

!!!
2010-12-23 22:10:37

使用道具 举报

新浪微博达人勋

amyli071 发表于 2010-12-23 22:07
你开贴把狼招来了~~

哪锅,哪锅,哪锅素狼?
2010-12-23 22:10:47

使用道具 举报

新浪微博达人勋

public class OODemo08
{
        public static void main(String args[])
        {
                // String类中有一个构造方法 --> String (String)
                // String name1 = new String("李兴华") ;
                String name2 = "李兴华" ;
                String name3 = "李兴华" ;
                // String name3 = name1 ;
                // System.out.println("name1 = "+name1) ;
                // System.out.println("name2 = "+name2) ;
                // System.out.println(name1==name2) ;
                // String类的一个方法:public boolean equals(String str)
                // System.out.println(name1.equals(name2)) ;
                // System.out.println(name3==name1) ;
                // System.out.println("李兴华".equals(name1)) ;
                System.out.println(name2==name3) ;
        }
};
2010-12-23 22:10:48

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部