Difference between revisions of "OOP Class6"

esse quam videri
Jump to: navigation, search
(Interfaces)
(UML)
Line 63: Line 63:
 
}</csharp>
 
}</csharp>
  
[[OOP Full Dig Diagram]]
+
[[OOP Full Dog Diagram]]

Revision as of 16:13, 28 February 2006

UML

Dia A Drawing Program

Dia for windows

[Dog Diagrams with Dia


Simple Dog Class from week 5 DogSimple.cs - source
DogSimple.png <csharp>using System;

//Dog simple class definition public class Dog {

	public string Name;		// the dog's name

public int Age; // the dog's age public int Weight; // the dog's weight public string BarkSound; // the sound of the dog's bark

public Dog() { BarkSound = "Woof!!!"; }

public void Bark() { //put bark code here } public void Eat() { //put eat code here } }</csharp>


Dog UML with Types

Dog Class with Types from week 4 DogWithTypes.cs - source

DogWithTypes.png <csharp>using System;

//Dog simple class definition public class Dog {

	public string Name;		// the dog's name

private int Age; // the dog's age public int Weight; // the dog's weight public string BarkSound; // the sound of the dog's bark private int barkCount; //The number of time the dog has barked public Dog() { BarkSound = "Woof!!!"; }

public string Bark() { string strBark = this.BarkSound;

       barkCount ++;
       return strBark;

}

public void Eat() { //put eat code here } }</csharp>

OOP Full Dog Diagram