+ All Categories
Home > Documents > IC211: Object Oriented Programming

IC211: Object Oriented Programming

Date post: 17-Feb-2016
Category:
Upload: lukas
View: 31 times
Download: 1 times
Share this document with a friend
Description:
IC211: Object Oriented Programming. IC211 teaches students about the fundaments of object-oriented programming. Topics include the use of classes, inheritance, and polymorphism within Java and other languages. Imported libraries support the brunt of the - PowerPoint PPT Presentation
Popular Tags:
1
IC211: Object Oriented Programming IC211 teaches students about the fundaments of object-oriented programming. Topics include the use of classes, inheritance, and polymorphism within Java and other languages. Imported libraries support the brunt of the program's weight, just as the frame of the c gives it strength it needs to act. om classes defined by the programmer flexibility to the program, in much the same that a car's suspension handles the bumps he road. capsulation allows a programmer to divide a program into objects called lasses”, in order to control how they are accessed/modified. Inheritance ables these classes to acquire attributes and behaviors from each other. mbine these two skills and you’ll really be firing on all cylinders!
Transcript
Page 1: IC211: Object Oriented Programming

IC211: Object Oriented ProgrammingIC211 teaches students about the fundaments of object-oriented programming. Topics include the use of classes, inheritance, and polymorphism within Java and other languages.

Imported libraries support the brunt of theprogram's weight, just as the frame of the car gives it strength it needs to act.

Custom classes defined by the programmergive flexibility to the program, in much the sameway that a car's suspension handles the bumpsin the road.

Encapsulation allows a programmer to divide a program into objects called “classes”, in order to control how they are accessed/modified. Inheritanceenables these classes to acquire attributes and behaviors from each other.Combine these two skills and you’ll really be firing on all cylinders!

Recommended