Question: Insert in the following class Person a constructor that will initialize the instance variables, so that for example the statement(new Person(John25)).getValues() will print My name
Insert in the following class Person a constructor that will initialize the instance variables, so that for example the statement(new Person("John"25)).getValues() will print "My name is John. I am 25" For example: Test Result My name is John. I am 25 Person e=new Person ("John",25); System.out.println(e.getValues(); Answer: (penalty regime: 0,2,4,6,... 96) Reset answer Ace editor not ready. Perhaps reload page? Falling back to raw text area, public class Person private String s; private int x; / /add the constructor here public String getValues() { return "My name is "+". I am "+x
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
