+ All Categories
Home > Technology > Object Oriented Programing - Intro

Object Oriented Programing - Intro

Date post: 14-Feb-2017
Category:
Upload: bayu-firmawan-paoh
View: 59 times
Download: 2 times
Share this document with a friend
16
Transcript

Dog

sizebreadname

Bark()

Dog

ColoreyeColorheightlengthweight

Sit()layDown()Shake()Come()

Dog

ColoreyeColorheightlengthweight

Sit()layDown()Shake()Come()

Dog dog = new Dog();

Public Dog{color = “”;height = 0;weight = 0;

}

Public Dog (String color, int height, int weight){

this.color = color;this.height = height;this.weight = weight;

}


Recommended