找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

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

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

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

新浪微博达人勋

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

使用道具 举报

新浪微博达人勋

(rf2rf)
2010-12-23 22:30:24

使用道具 举报

新浪微博达人勋

2010-12-23 22:30:24

使用道具 举报

新浪微博达人勋

// 测试运行时的参数
public class OODemo18
{
        public static void main(String args[])
        {
                // 使用此种方法,必须保证字符串是由数字组成的
                String num = "123a" ;
                int temp = Integer.parseInt(num) ;
                System.out.println(temp*2) ;
        }
};
2010-12-23 22:30:32

使用道具 举报

新浪微博达人勋

2010-12-23 22:30:34

使用道具 举报

新浪微博达人勋

(rf15rf)
2010-12-23 22:30:39

使用道具 举报

新浪微博达人勋

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

使用道具 举报

新浪微博达人勋

2010-12-23 22:30:50

使用道具 举报

新浪微博达人勋

/*
由运行参数输入Person类中的姓名和年龄,并打印输出
*/
class Person
{
        String name ;
        int age ;
        String shout()
        {
                return "姓名:"+name+",年龄:"+age ;
        }
};
public class OODemo19
{
        public static void main(String args[])
        {
                // 如果发现没有参数,则表示程序出错,退出程序
                if(args.length!=2)
                {
                        // 没有两个参数
                        // 程序退出
                        System.out.println("参数输入有错误,可按以下格式输入:") ;
                        System.out.println("java 类名称 名字 年龄") ;
                        System.exit(1) ;
                }
                // 输入参数第一个是名字,第二个是年龄
                String name1 = args[0] ;
                int age1 = Integer.parseInt(args[1]) ;
                Person p = new Person() ;
                p.name = name1 ;
                p.age = age1 ;
                System.out.println(p.shout()) ;
        }
};
2010-12-23 22:30:50

使用道具 举报

新浪微博达人勋

2010-12-23 22:30:53

使用道具 举报

新浪微博达人勋

2010-12-23 22:30:54

使用道具 举报

新浪微博达人勋

2010-12-23 22:31:00

使用道具 举报

新浪微博达人勋

2010-12-23 22:31:01

使用道具 举报

新浪微博达人勋

速度~~
2010-12-23 22:31:02

使用道具 举报

新浪微博达人勋

(rf28rf)
2010-12-23 22:31:02

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部