Question: The following println statement (the entire line) is equivalent to what? Point p1 = new Point(); ... System.out.println(p1); a. System.out.println(toString(p1)); b. p1.toString(); c. System.out.println(p1.toString()); d.
The following println statement (the entire line) is equivalent to what?
Point p1 = new Point();
...
System.out.println(p1);
a. System.out.println(toString(p1));
b. p1.toString();
c. System.out.println(p1.toString());
d. System.out.println(p1.string());
e. System.out.println(Point.toString());
Step by Step Solution
3.35 Rating (167 Votes )
There are 3 Steps involved in it
The println stat... View full answer
Get step-by-step solutions from verified subject matter experts
