这是java实例的书上例题

源代码在线查看: nullexc.java

软件大小: 411 K
上传用户: singwolf
关键词: java
下载地址: 免注册下载 普通下载 VIP

相关代码

				class NullExc
				{
				    public static void main (String args[]) 
				    {
				        String str = null;
				        int a[] = null;
					System.out.println(str.length());
				        a[0] = 0;
				    }
				}
							

相关资源