object oriented programing-intro

16

Upload: bayu-firmawan-paoh

Post on 14-Feb-2017

30 views

Category:

Technology


4 download

TRANSCRIPT

Page 1: Object Oriented Programing-Intro
Page 2: Object Oriented Programing-Intro
Page 3: Object Oriented Programing-Intro
Page 4: Object Oriented Programing-Intro
Page 5: Object Oriented Programing-Intro

Dog

sizebreadname

Bark()

Page 6: Object Oriented Programing-Intro
Page 7: Object Oriented Programing-Intro

Dog

ColoreyeColorheightlengthweight

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

Page 8: Object Oriented Programing-Intro

Dog

ColoreyeColorheightlengthweight

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

Page 9: Object Oriented Programing-Intro
Page 10: Object Oriented Programing-Intro
Page 11: Object Oriented Programing-Intro

Dog dog = new Dog();

Page 12: Object Oriented Programing-Intro
Page 13: Object Oriented Programing-Intro

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

}

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

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

}

Page 14: Object Oriented Programing-Intro
Page 15: Object Oriented Programing-Intro
Page 16: Object Oriented Programing-Intro