Question: What is wrong in the following code? 1 public class C { 2 private int p; 3 4 public C ( ) { 5 System.out.println

What is wrong in the following code?
1 public class C {2 private int p; 34 public C(){5 System.out.println("C's no-arg constructor invoked"); 6 this(0); 7}89 public C(int p){10 p = p; 11}1213 public void setP(int p){14 p = p; 15}16}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!