Questions tagged [ooad]

Object Oriented Analysis and Design - use this tag for questions related to Object Oriented programming. Also include language tags such as java where appropriate.

Programming paradigm where entities are described as objects with features and capabilities. The main advantage of this approach is the ability to reuse and extend functionality of objects.

See also: Wikipedia entry on OOAD

256 questions
-5
votes
2 answers

C# abstract class and covariant

i have some code like this: class DataFilter { List animals=null; public function1(string TypeOfData) { if(TypeOfData=="cat"){//get cats from database and do something} else if(TypeOfData=="dog") {//get…
Scott 混合理论
  • 2,263
  • 8
  • 34
  • 59
1 2 3
17
18