class
extends
child
void
import java.awt.Color; public class Planet { String name; Color color; public Planet(String n, Color c) { name = n; color = c; } }
Planet p = Planet("Jupiter", Color.red);
Planet = new Planet("Jupiter", Color.red);
Planet p = new Planet("Jupiter", Color.red);
Default
Object