Hi,
In the MAIN method, I have created Person object as per the examples explained in the chapter.
(Note: VariableType variableName = new TypeOfObjectBeingCreated(); )
Please guide me ...
package com.codegym.task.task02.task0202;
/*
Where does a Person come from?
*/
public class Solution {
public static void main(String[] args) {
Person Person=new Person();
}
public static class Person {
String name;
int age;
int weight;
int money;
}
}