inheriting a class
posted 22 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Will someone please give me a hint on how I can get my parent class to inherit another class, for example, the chart data structure?
posted 22 years ago
Of course, if you want to use an interface, use "implements" in the class declaration. A class can extend at most one other class (and, in fact, has to...if you don't declare a super class, you by default get the "Object" class as your super class. The Object class is the only class that does not have a super class.) However, it can implement any number of interfaces:
Of course, don't confuse the "is-a" with the "has-a" relationship. A HomoSapiens is a Chordata (going back enough super classes); but it has a Spine (making it a member of the Vertebrata sub-phylum, but that's a bit too involved for this example...
)
I hope that this answers your question and does not confuse you further...
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Of course, if you want to use an interface, use "implements" in the class declaration. A class can extend at most one other class (and, in fact, has to...if you don't declare a super class, you by default get the "Object" class as your super class. The Object class is the only class that does not have a super class.) However, it can implement any number of interfaces:
Of course, don't confuse the "is-a" with the "has-a" relationship. A HomoSapiens is a Chordata (going back enough super classes); but it has a Spine (making it a member of the Vertebrata sub-phylum, but that's a bit too involved for this example...
)I hope that this answers your question and does not confuse you further...
Piscis Babelis est parvus, flavus, et hiridicus, et est probabiliter insolitissima raritas in toto mundo.
posted 22 years ago
-
-
Number of slices to send:Optional 'thank-you' note:
-
-
Go to http://mindview.net/Books and download the excelent free book "Thinking In Java". Then get the example code as well. Bruce Eckel wrote a very good chapter on inheiritence and Object Oriented Design. Work through the first 3 or 4 chapters of that book and you'll understand it perfectly.
Hope it helps.
Greg
Hope it helps.
Greg
For a good Prime, call:<br />29819592777931214269172453467810429868925511217482600306406141434158089
| Tick check! Okay, I guess that was just an itch. Oh wait! Just a tiny ad: Paul Wheaton's 16th Kickstarter: Gardening playing cards for gardeners and homesteaders https://coderanch.com/t/889615/Paul-Wheaton-Kickstarter-Gardening-playing |











