找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

(rf17rf)
2010-12-23 22:25:22

使用道具 举报

新浪微博达人勋

class Person
{
        private String name ;
        private int age ;
        public Person(String name,int age)
        {
                this.name = name ;
                this.age = age ;
        }
        public void print()
        {
                System.out.println("姓名:"+this.name) ;
                System.out.println("年龄:"+this.age) ;
        }
};
public class OODemo20
{
        public static void main(String args[])
        {
                // 对象数组:类名称 对象数组名[] = null ;
                // 对象数组名 = new 类名称[]
                Person p[] = null ;
                p = new Person[10] ;
                // 对象数组在使用时需要为每一个元素[对象]分别实例化
                p[0] = new Person("张三",30) ;
                p[1] = new Person("李四1",33) ;
                p[2] = new Person("李四2",33) ;
                p[3] = new Person("李四3",33) ;
                p[4] = new Person("李四4",33) ;
                p[5] = new Person("李四5",33) ;
                p[6] = new Person("李四6",33) ;
                p[7] = new Person("李四7",33) ;
                p[8] = new Person("李四8",33) ;
                p[9] = new Person("李四9",33) ;
                for(int i=0;i<p.length;i++)
                {
                        p[i].print() ;
                        System.out.println("-----------------------------") ;
                }
        }
};
2010-12-23 22:25:36

使用道具 举报

新浪微博达人勋

(rf24rf)
2010-12-23 22:25:36

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:25:39

使用道具 举报

新浪微博达人勋

2010-12-23 22:25:46

使用道具 举报

新浪微博达人勋

(rf26rf)
2010-12-23 22:25:47

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:25:50

使用道具 举报

新浪微博达人勋

2010-12-23 22:25:57

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:26:01

使用道具 举报

新浪微博达人勋

dddddddddddddddddddddd
2010-12-23 22:26:18

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:26:20

使用道具 举报

新浪微博达人勋

2010-12-23 22:26:21

使用道具 举报

新浪微博达人勋

2010-12-23 22:26:31

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:26:40

使用道具 举报

新浪微博达人勋

(rf2rf)
2010-12-23 22:26:44

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部