找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

public class OODemo14
{
        public static void main(String args[])
        {
                {
                        // 在此大括号之内
                        int i = 0 ;
                }
                int i = 10 ;
                System.out.println("i = "+i) ;
        }
};
2010-12-23 22:29:12

使用道具 举报

新浪微博达人勋

(rf2rf)
2010-12-23 22:29:20

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:29:22

使用道具 举报

新浪微博达人勋

class Person
{
        // 构造块
        {
                System.out.println("Hello World!!!") ;
        }
        // 声明一个构造方法
        Person()
        {
                System.out.println("Person()构造方法") ;
        }
};
public class OODemo15
{
        public static void main(String args[])
        {
                new Person() ;
        }
};
2010-12-23 22:29:26

使用道具 举报

新浪微博达人勋

2010-12-23 22:29:27

使用道具 举报

新浪微博达人勋

(rf28rf)
2010-12-23 22:29:33

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:29:34

使用道具 举报

新浪微博达人勋

(rf4rf)
2010-12-23 22:29:44

使用道具 举报

新浪微博达人勋

2010-12-23 22:29:52

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:29:52

使用道具 举报

新浪微博达人勋

class Person
{
        // 静态代码块
        static
        {
                System.out.println("static code() ...") ;
        }
        // 构造块
        {
                System.out.println("Hello World!!!") ;
        }
        // 声明一个构造方法
        Person()
        {
                System.out.println("Person()构造方法") ;
        }
};
public class OODemo16
{
        public static void main(String args[])
        {
                new Person() ;
                new Person() ;
        }
};
2010-12-23 22:29:54

使用道具 举报

新浪微博达人勋

(rf6rf)
2010-12-23 22:29:55

使用道具 举报

新浪微博达人勋

999999999999999999
2010-12-23 22:30:07

使用道具 举报

新浪微博达人勋

袜子
2010-12-23 22:30:12

使用道具 举报

新浪微博达人勋

// 测试运行时的参数
public class OODemo17
{
        public static void main(String args[])
        {
                for (int i=0;i<args.length;i++)
                {
                        System.out.println(args[i]) ;
                }
        }
};
2010-12-23 22:30:15

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部