create objects java code example
Example 1: java create new object
Car mycar = new Car();
Example 2: make an object in java
public class Puppy {
public Puppy(String name) {
// This constructor has one parameter, name.
System.out.println("Passed Name is :" + name );
}
public static void main(String []args) {
// Following statement would create an object myPuppy
Puppy myPuppy = new Puppy( "tommy" );
}
}
Example 3: how to make a class in java
// Public creates avaliability to all classes/files
public class Object {
// Instance of a variable per each class created
public int a = 1;
// Private restricts in local space (within these brackets)
private int b = 5;
// Defaults as public
int c = 0;
// Method Examples
void setB(int B)
{
b = B;
// No return b/c 'void'
}
int getA()
{
return b;
// Return b/c 'int' in front of method
}
}