know about basic of all oops concepts
-
hello friends, In my educational period i was study about what is oops(object, class,inheritance,polymorphism,encapsulation and etc) as a theory with simple example,but after now a days i need to create my own classes,but still i am confused at this level,please tell me which way is better to understand and coding with my own way.please refer me any best articles for these topics
-
hello friends, In my educational period i was study about what is oops(object, class,inheritance,polymorphism,encapsulation and etc) as a theory with simple example,but after now a days i need to create my own classes,but still i am confused at this level,please tell me which way is better to understand and coding with my own way.please refer me any best articles for these topics
-
hello friends, In my educational period i was study about what is oops(object, class,inheritance,polymorphism,encapsulation and etc) as a theory with simple example,but after now a days i need to create my own classes,but still i am confused at this level,please tell me which way is better to understand and coding with my own way.please refer me any best articles for these topics
Hi, See following links: http://www.vijaymukhi.com/documents/books/csbasics/contents.htm[^] http://www.computer-books.us/csharp_0004.php[^]
Happy Coding... :)
-
hello friends, In my educational period i was study about what is oops(object, class,inheritance,polymorphism,encapsulation and etc) as a theory with simple example,but after now a days i need to create my own classes,but still i am confused at this level,please tell me which way is better to understand and coding with my own way.please refer me any best articles for these topics
MP3 Rearrange is a good example of Object Oriented programming. It uses inheritance 5 levels deep. Overriding methods of base classes is used as well. Take a look. MP3 Rearrange Please leave a comment if you like. Best John
-
hello friends, In my educational period i was study about what is oops(object, class,inheritance,polymorphism,encapsulation and etc) as a theory with simple example,but after now a days i need to create my own classes,but still i am confused at this level,please tell me which way is better to understand and coding with my own way.please refer me any best articles for these topics
Short answer: Classes are nouns and their methods are verbs. Each class maintains its data, and its methods represent actions on that data. Ideally, once you write a class (and methods) you use it in the rest of your program like that type was built into the language. The only way the rest of the program interacts with it is through its public methods.
"Microsoft -- Adding unnecessary complexity to your work since 1987!"
-
hello friends, In my educational period i was study about what is oops(object, class,inheritance,polymorphism,encapsulation and etc) as a theory with simple example,but after now a days i need to create my own classes,but still i am confused at this level,please tell me which way is better to understand and coding with my own way.please refer me any best articles for these topics
baskaran chellasamy wrote:
need to create my own classes,but still i am confused at this level,please tell me which way is better to understand
It is possible that you just need to start writing some code. Reading about programming can only get you so far - at some point you must actually do it.