class Person{ public Person(){ System.out.println("无参的构造方法被调用了..."); } } class Test{ public static void main(String[] args) { new Person(); } }