摘要:
一 .动手动脑:请阅读并运行AboutException.java示例,然后通过后面的几页PPT了解Java中实现异常处理的基础知识 import javax.swing.*; class AboutException { public static void main(String[] a) { 阅读全文
摘要:
一 public class count { public static int numb; //numb为类所创建对象的个数 public count() { numb ++; //统计个数,每创建一个类 numb++ } public static int getNumb(int numb) { 阅读全文
摘要:
一、 public class Suiji{ public long a=12345L; public long c=12345L; public long m=456123L; public long r=1; public long rand() { r=(r*a+c)%m; return r; 阅读全文