Difference between revisions of "OOP Class8"

esse quam videri
Jump to: navigation, search
(Dogs on the web)
 
(44 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Category:OOP]]
+
[[Category:IAM Classes]]
 
+
MIDTERM
==Interfaces==
 
 
 
Interfaces - implements or derives from
 
 
 
An interface is a class that lacks implementation. The only thing it contains are definitions of events, indexers, methods and/or properties. The reason interfaces only provide definitions is because they are inherited by classes and structs, which must provide an implementation for each interface member defined. Since classes in c# can only be derived from one other class ( in c++ it is possible to derive from many) interfaces are used for multiple inheritance. Like abstract classes you cannot create an instance of an interface on derive from it.
 
 
 
You cannot create an instance of an interface.
 
 
 
Interfaces cannot contain any implementation.
 
 
 
Interfaces are basically a contract between classes. When a class implements an interface it is promising to implement the propery and method signature of that interface. This helps with abstraction and encurages polymorphism.
 
 
 
In order to specify that a class implements an inteface you use a : after the class name:
 
 
 
<csharp>public class NewDog : IWalkable</csharp>
 
 
 
This means that the NewDog class implements the IWalkable interface.
 
 
 
Interfaces support multple inheritance.
 
 
 
<csharp>public class NewDog : IWalkable,IBark</csharp>
 
 
 
Now the NewDog Class promises to implement the IWalkable and the I Bark interface.
 
 
 
 
 
Phone interface example with single inhertance
 
 
 
[http://iam.colum.edu/oop/gbrowser.php?file=/classsource/class8/phoneIFace.cs phoneIFace.cs] -source
 
 
 
Multiple interface inheritance - inherits IPhone, Cell, POTS
 
[http://iam.colum.edu/oop/gbrowser.php?file=/classsource/class8/phoneIFacePOTS.cs phoneIFacePOTS.cs] -source
 
 
 
Phone Interface UML
 
 
 
[[Image:PhoneInterface.png]]
 
 
 
===IComparable and Polymorphism===
 
 
 
In order to allow build in Arry type like the ArrayList to be able to Sort and Reverse your classes need to implement the IComparable Interface.
 
[http://msdn2.microsoft.com/en-US/library/system.icomparable.aspx System.IComparable on MSDN]
 
 
 
After your classes implement this interface it will allow for polymorphic method like Sort and Reverse to work.
 
 
 
Here is an exmaple of a dog array that will not sort
 
 
 
[http://iam.colum.edu/oop/gbrowser.php?file=/classsource/class8/DogCompare/dogSimple.cs dogSimple.cs]
 
 
 
This IComplare Interface has calls for a methpod called CompareTo. The CompareTo method shoudl retun an positive integerg if that the current object is grater that the object that is being compared.
 
It should oreturn 0 is they are equal.
 
And it should return a negative integer is the current object is less than the compared object.
 
 
 
The UML for IComparable<br/>
 
[[Image:IComparable.png]]
 
 
 
The UML for a dog that implemets IComparable
 
 
 
[[Image:DogIComparable.png]]
 
 
 
 
 
Now here is an example of a Dog class that implements the IComparable inteface.
 
 
 
[http://iam.colum.edu/oop/gbrowser.php?file=/classsource/class8/DogCompare/dogICompare.cs dogICompare.cs]
 
 
 
===Other Resources on Interfaces===
 
 
 
[http://ia300218.us.archive.org/2/items/arsdigitac04n04/Lecture_04.html ArsDigita University Course 04: Object-oriented Program Design and Software Engineering - Lecture Notes 4]
 
 
 
[http://ia300218.us.archive.org/2/items/arsdigitac04n05/Lecture_05.html ArsDigita University Course 04: Object-oriented Program Design and Software Engineering - Lecture Notes 5]
 
 
 
==Anatomy of an aspx page==
 
Page Direcive
 
 
 
Console applications start executing in the main method
 
 
 
<csharp>public static void Main() {}</csharp>
 
 
 
The .Net Framework can also execute on the web. Rather than having a Main method a web page starts it's execution with a method called Page_Load
 
 
 
<csharp>public Page_Load { }</csharp>
 
 
 
There are actually several method that are exeuted in an aspx page.
 
 
 
 
 
 
 
 
==Dogs on the web==
 
[http://iam.colum.edu/oop/browser/browser.aspx?f=/classsource/class8/DogWeb DogWeb]
 
 
 
 
 
==Courses on the Web==
 
[http://iam.colum.edu/oop/browser/browser.aspx?f=/classsource/class8/StudentWeb Student Web]
 

Latest revision as of 16:31, 10 June 2019

MIDTERM