码迷,mamicode.com
首页 > 其他好文 > 详细

待解:使用命令行实参的方法

时间:2014-12-17 23:54:54      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   使用   sp   for   java   on   

 1 package com.java7;
 2 // A simple automated telephone directory.
 3 class Phone {
 4     public static void main(String[] args) {
 5         String numbers[][] = {
 6                 { "Tom", "555-3322" },
 7                 { "Mary", "555-8976" },
 8                 { "Jon", "555-1037" },
 9                 { " Rachel", "555-1400"}
10         };
11         
12         int i;
13         
14         if(args.length != 1) // 要使用程序,必须提供一个命令行实参
15             System.out.println("Usage: java Phone <name>");
16         else {
17             for(i = 0; i < numbers.length; i++){
18                 if(numbers[i][0].equals(args[0])) {
19                     System.out.println(numbers[i][0] + ": " + numbers[i][1]);
20                     break;
21                 }
22             }
23             if(i == numbers.length)
24                 System.out.println("Name not found.");
25         }
26     }
27 }

 

待解:使用命令行实参的方法

标签:style   blog   ar   color   使用   sp   for   java   on   

原文地址:http://www.cnblogs.com/fatoland/p/4170652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!