The features of OOD

Scope, Object, Property, Status, Action, Method, Instance Every Object has properties and actions Public Class Cellphone() { private String brand; private String color; private double price; public Cellphone(String brand, String color, double price) { this.brand=brand; this.color=color; this.price=price; } public void takePhoto(); { …… } public void call() { …… } public void sendMessage() { …… } } Continue reading The features of OOD