Define a class
Create a constructor if needed
Use the `new` keyword
Assign the object to a reference variable
Example: `ClassName obj = new ClassName();`
Example with parameters: `ClassName obj = new ClassName(arg1, arg2);`
Define a class
Create a constructor if needed
Use the `new` keyword
Assign the object to a reference variable
Example: `ClassName obj = new ClassName();`
Example with parameters: `ClassName obj = new ClassName(arg1, arg2);`