Loading...
Searching...
No Matches
Go to the documentation of this file.
15 System.out.println(
"Hi! I am " + name +
" and my ID is " + UniqueID);
19class AdvancedObject
extends Object {
24 System.out.print(
"Hi! I am " + name +
" and my ID is " + UniqueID);
25 System.out.println(
" and my description is " + description);
30 public static void main(String[] args) {
31 Object untitled =
new AdvancedObject();
32 untitled.name =
"Untitled";
33 untitled.UniqueID = 10;
35 untitled.exportInfo();