Person 😊 firstName |
Object Type: Person
Properties:
firstName -- first name of person
public class Person {
}
public class Person { //Add object properties here }
Person -> ivar "firstName" of type "String"
public class Person { private String firstName; }
public class Person {1private2String firstName; }
public class Person {
private String firstName;
}
public class Dog { private String name; private int weight; private String favoriteFood; }
public class Point { private int x; private int y; }