摘要:
查找list[]中的最大值:int Largest(int list[], int length); 首份实现代码如下: int Largest(int list[], int length) { int i,max; for(i = 0; i < (length – 1); i ++ ) { if 阅读全文
摘要:
设计思想 定义一个静态字段,在构造函数中写一个静态字段自家的语句,这样,因为静态字段不会因为在此调用而改变数值所以可以计算建立对象的个数。 源代码 //使用静态字段和构造函数跟踪对象 package bao; public class sum { public static int a=0; int 阅读全文