摘要:
import java.util.Scanner; public class AnyThing { public AnyThing(){ //定义无参数构造方法 this ("this 调用有参构造方法"); //使用this关键字调用有参数构造方法 System.out.println("无参构造方法"); ... 阅读全文
摘要:
public class Number { public static void main(String[] args) { //在项目中建设Number类,判断字符串"mingrikejijavabu"中字符 'i'出现了几次,并将结果输出。 //方法一 String str1 = new String("mingrikejijavabu");//创建... 阅读全文