210 likes | 344 Views
Object Oriented Programing. Exceed Camp Project. Created By Oakvale Original Source By M( shape ) Template PPT By http://www.templateswise.com. Meaning & Concept Of OOP. OOP เป็นสไตล์การเขียนโปรแกรม OOP เป็นการมอง และแบ่งแยกโปรแกรมออกมาเป็นส่วนๆ เป็นชิ้นๆ.
E N D
Object OrientedPrograming Exceed Camp Project Created By Oakvale Original Source By M(shape) Template PPT By http://www.templateswise.com
Meaning & Concept Of OOP • OOP เป็นสไตล์การเขียนโปรแกรม • OOP เป็นการมอง และแบ่งแยกโปรแกรมออกมาเป็นส่วนๆ เป็นชิ้นๆ
Meaning of Class & Object • Class เป็นต้นแบบ (blueprint) ในการสร้าง object • Object เป็น instance of class Class Person Class
Classมีอะไรบ้าง? • attribute == ตัวแปร • behavior == method Class Person Class
Object is instance of Class Class Person Class
Ready for Typing Person Class? Class Person Class
Declare Attributeof Person Class Class Person Class
Constructor of Person Class Class Person Class
WalkAhead() Method Class Person Class
CanDrink() Method Class Person Class
ToString() Method Class Person Class
Let’s Use Person Class Class Person Class
Primitive VS Reference Data type Data type • int, float, double, char, sting is Primitive. • แล้วอะไรที่ไม่ใช่ Primitive Data Type?? • Array เป็น Primitive Data Type? • Class ที่เราเขียนเอง เป็น type ไหนอ่ะ?? • Reference == Data Type ที่อ้างอิงตำแหน่งที่ในหน่วยความจำ Data type
What’s difference BetweenPrimitive VS Reference Data type Data type Primitive Reference int a=5; int b=3; a=b; Circle a= new Circle( 5 ); Circle b= new Circle( 3 ); a=b; 5 a = 3 a = 5 a 3 b
About Attribute Access Modifier • private เห็นได้เฉพาะใน class เท่านั้น • public ทุกคนเรียกใช้ได้
UML • UnifiedModelingLanguage UML ถูกใช้ในการสื่อสารกันภายในทีมเพื่อให้เข้าใจตรงกัน รวมถึงช่วยในการ แบ่งงาน แบ่งส่วน ของโปรแกรม Resource Form http://www.thaiall.com/uml/indexo.html
Many Type of UML Resource Form http://www.thaiall.com/uml/indexo.html
Sample UML Class Diagram Resource Form http://www.thaiall.com/uml/indexo.html
May the ForcebewithYOU. …^( ^ ^ )^... Thanks, your watching.