- public class PrintChar
- {
- public static void main(String[] args)
- {
- int i,j;
- for(i=0;args[i]!="\0";i++)
- {
- System.out.println(args[i]);
- for(j=0;j<i;j++)
- System.out.println("*");
- }
- }
- }
复制代码
将单引号改成双引号。因为String[] 数组中的元素都是String类型的,而'\0'是char类型。改过来的编译运行正常。。。 |
|