- public class PrintChar{
- public static void main(String[] args) {
- int i,j;
- int temp=args.length;
- if(temp==0)
- throw new RuntimeException("man函数无参数传递...");
- for(i=0;i<temp;i++) {
- if(!args[i].equals("over"))
- System.out.println(args[i].toString());
- else
- break;
- }
- }
- }
复制代码 代码给你优化了,LZ的代码参数String与循环比较的args!='\0'中是char类型,不兼容....
|