多选题
What constructor is equivalent to the one listed here?
public SampleConstructor( {
System.out.println("SampleConstructor");
}
- A. public SampleConstructor() { this();
System.out.println("Sample Constructor"); }
- B. public SampleConstructor() { super();
System.out.println("Sample Constructor"); }
- C. public SampleConstructor() { this.SampleConstructor();
System.out.println("Sample Constructor"); }
- D. public SampleConstructor() {
super.SampleConstructor(); System.out.println("Sample
Constructor"); }
- E. None of the above