object-oriented programming เอกสารประกอบการบรรยาย...

56
Object-Oriented Programming เเเเเเเเเเเเเเเเเเเเเ เเเเเเเ 204200 Browser-Based Application Development

Upload: donald-houston

Post on 30-Dec-2015

235 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Programming

เอกสารประกอบการบรรยายรายวิ�ชา204200 Browser-Based Application Development

Page 2: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

วิ�ตถุ�ประสงค์�นั�กศึ�กษาสามารถุอธิ�บายเก��ยวิก�บ Object-Oriented Programming ได้

นั�กศึ�กษาสามารถุพั�ฒนัาโปรแกรมประย�กต�บนับราวิเซอร�ด้ วิยแนัวิค์�ด้ Object-Oriented ได้

Page 3: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

หั�วิข้ อบรรยายObject-Oriented Concept Introduction to Object-Oriented Programming

Page 4: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class Inheritance (การส(บทอด้)PolymorphismEncapsulation

Page 5: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Introduction to Object-Oriented Programming

Page 6: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class InheritancePolymorphismEncapsulation

Page 7: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ObjectObject WorldMessageMethod/Operation InterfaceEventResponsibilities

Page 8: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object

Page 9: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object

Click ( )

Page 10: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object

Person Post Office

Deliver (Mail)

DeliverSend Mail

Page 11: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object

Person Vending Machine

Buy Pepsi

Sell (10 Baht, Pepsi)

Sell

Page 12: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object

Person Elevator

Go to 3rd floor

MoveToFloor (3)

MoveToFloor

Open

Close

Page 13: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Class

Person

Somchai

Somsri

Somsak

Somying

Page 14: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Class

Student

Somchai

Somsri

Somsak

Somying

Page 15: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Class

Tennis Player

Paradorn

Venus

Marat

Martina

Page 16: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Class

Institute

Social Technology

Engineering

Science

Agricultural Technology

Page 17: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Class

TemplateNameAttributesOperationsResponsibilities

Page 18: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Class

NameAttributesOperationsResponsibil

ities

Page 19: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ClassStudent

StudentID

FirstName

LastName

Address

etc…

RegisterForCourse

DropCourse

etc...

Page 20: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ClassTennis Player

FirstName

LastName

Nationality

Ranking

etc…

RegisterForTournament

etc...

Page 21: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ClassCar

Car Reg. Number

Maker

Model

Color

etc…

Accelerate

Stop

etc...

Page 22: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ClassAirplane

Plane Number

Manufacturer

Model

etc…

TakeOff

Landing

etc...

Page 23: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object & Class

Student

Somchai

Somsri

Somsak

Somying

Page 24: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object & Class

Student

Somchai

Somsri

Somsak

Somying

Student

StudentID

FirstName

LastName

Address

etc…

RegisterForCourse

DropCourse

etc...

Page 25: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object & Class

Student

Somchai

Somsri

Somsak

Somying

Student1

B4555555

Somchai

Saetung

7146 Suranivet 7

etc…

RegisterForCourse

DropCourse

etc...

Page 26: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Student1

B4555555

Somchai

Saetung

7146 Suranivet 7

etc…

RegisterForCourse

DropCourse

etc...

Student

StudentID

FirstName

LastName

Address

etc…

RegisterForCourse

DropCourse

etc...

Page 27: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class InheritancePolymorphismEncapsulation

Page 28: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Inheritance

Animal

Dog PersonCat

Page 29: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Inheritance

Land Vehicle

Truck CarBus

Page 30: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Inheritance

Transaction

Rental Transaction

Lease Transaction

Sales Transaction

Page 31: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Inheritance

Class HierarchySub ClassSuper ClassReusabilityOverriding

Page 32: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Inheritance

Land Vehicle

Car

Toyota

TruckBus

Vios Altis Camry

Page 33: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

TransactiontransNo

transDate

transTime

etc…

Rental Transaction

Lease Transaction

Sales Transaction

transNo

transDate

transTime

etc…

quantitySold…

transNo

transDate

transTime

etc…

memberNo…

transNo

transDate

transTime

etc…

duration…

Page 34: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class InheritancePolymorphismEncapsulation

Page 35: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Polymorphism

DrawChart

DrawChart(1)

DrawChart(1,2,1,2)

DrawChart(1,1,1)

DrawTriangle(1,1,1)

DrawRect(1,2,1,2)

DrawCircle(1)

Page 36: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Polymorphism Add(integer, integer) Add(string, string) Add(string, integer) Add(1,1) 2 Add(“Hello”, “World”) “HelloWorld” Add(“Hello”, 2) “Hello2” Add(2, “Hello”) ?

Page 37: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Polymorphism

:PaySlip

:HourlyPaidEmployee

:WeeklyPaidEmployee

:MonthlyPaidEmployee

getTotalPay()

calculatePay()

calculatePay()

calculatePay()

Page 38: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Polymorphism

Overloading

Page 39: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class InheritancePolymorphismEncapsulationClass Relationship

Page 40: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Encapsulation

Abstraction Information HidingSecurity

Page 41: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

EncapsulationStudent

StudentID: B4555555

FirstName: Somchai

LastName: Saetung

Courses Registered: [204204], [204203]

etc…

DropCourse

SetName

GetName

etc...

Page 42: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Encapsulation

Person Vending Machine

Buy Pepsi

Sell (10 Baht, Pepsi)

Sell

Page 43: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class InheritancePolymorphismEncapsulation

Page 44: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Introduction to Object-Oriented Programming

Page 45: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Introduction to Object-Oriented Programming

Page 46: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Oracle

SQL

Access

FoxPro

ASP Engine

Web Browser

Introduction to Object-Oriented ProgrammingWeb Server

ADOData Provider

ODBC

Components ASP Script

Page 47: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ASP Engine

Web Browser

Introduction to Object-Oriented Programming

Web Server

Database

Page 48: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ASP Engine

Web Browser

Introduction to Object-Oriented Programming

Web Server

Database

Page 49: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Oracle

SQL

Access

FoxPro

ASP Engine

Web Browser

Introduction to Object-Oriented ProgrammingWeb Server

ADOData Provider

ODBC

Components ASP Script

Page 50: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Oracle

SQL

Access

FoxPro

ASP Engine

Web Browser

Introduction to Object-Oriented ProgrammingWeb Server

ADOData Provider

ODBC

Class ASP Script

Page 51: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ASP Engine

Introduction to Object-Oriented Programming

Web Server

ASP Classes

Page 52: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ASP Engine

Introduction to Object-Oriented Programming

Web Server

ASP ClassesDatabase

Page 53: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

ASP Engine

Web Browser

Introduction to Object-Oriented Programming

Web Server

Database

Page 54: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

หั�วิข้ อบรรยายObject-Oriented Concept Introduction to Object-Oriented Programming

Page 55: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Object-Oriented Concept

Object & Class Inheritance (การส(บทอด้)PolymorphismEncapsulation

Page 56: Object-Oriented Programming เอกสารประกอบการบรรยาย รายวิชา 204200 Browser-Based Application Development

Introduction to Object-Oriented Programming