|
I ended up temporarily changing the way I had my stuff coded since I'm on a deadline at school, but for future reference, I'm having issues with classes extended from other classes. This is easier to show than it is to explain: I declare my class and subclass: Later, while trying to use this code, I need to reference either one of these two classes in the same variable (for example, both are CharacterClass, but one is NPC and the other is PC, and one variable is used for both versions of Base). It won't let me use the derived version of DoSomething, and returns that I can't call it with parameters (as none are set in Base's constructor, even though it is in each of its children. The above throws an error, and since the same command is used in both instances, I can't simply use ( myBase as Sub ).DoSomething(myParam); As I never don't intrinsically know which of the two versions I have (and it returns a Base, not a Sub or Sub2 version of the myBase). Is there any way to access the inheritor's function to perform the task?
(comments are locked)
|
|
As explained by senad, you are not overriding the original class functions. What I would suggest you do when using inheritance, use the virtual keyword. Then your function will look something like this: Then in your derived class (in your example, "Sub") you use the override keyword. This will ensure that you really have the correct signature. i.e. If you want to pass different parameters then you lose the static typing of them unfortunately. You could do it like: or you could pass an object as the parameter, which is itself a class: however in this case you'll need to cast the parameterObject to the correct class type in your derived (overriding) class. The final way might be using reflection, but in all honesty, I would suggest trying to stay within the realms of normal inheritance. PS: The above is all C# code. You'll have to work out the translation to JS. I wouldn't know how to use the virtual function, but thank you for answering. It was hard enough just trying to find information to properly learn class inheritance in JS/Unityscript. Most lean towards C# at that point, but I'm not supposed to use C# in this class.
Apr 16 '12 at 02:31 PM
aviose
(comments are locked)
|
|
"DoSomething()" and "DoSomething(with : parameter)" are not the same method, as the paramter list is part of the signature. So one can not override the other. Also "DoSomething(with : parameter)" is not defined in your base class, only the other one. I didn't think to set up a second override for the method with parameters in the base. Still new to coding with this many classes, so small intricacies are still a pain in the butt to me. Thanks. I've only been using class functions like this for about a month or so, as only my game design courses even use object oriented programming, and our instructor isn't going over custom classes in class this semester.
Apr 16 '12 at 02:29 PM
aviose
(comments are locked)
|
|
The point of inheritance is that you have to use virtual functions so they can be overridden in a sub class. AFAIK it works like this in UnityScript: As far as i know there's no "override" keyword in UnityScript. It automatically overrides the function as long as it's virtual. This would print: Like others have already mentioned the signature of a function is defined by it's name and it's parameters. Otherwise it's not the same function. If you have multiple functions with the same name but different parameters it's called an overloaded function since it exists multiple times. The compiler picks the correct version according to the parameters you pass in. I understood the overloaded function aspect, save that I was still thinking of them as the same function, just with multiple ways to interpret it. Since I didn't think of them as completely separate functions, though, I didn't think about trying to set up a proper parameter version. I also didn't know about the virtual command, and just allowed Unityscript to automatically read both functions. Using this will help me, I'm sure. Thanks to all 3 of you for answering, and doing so quickly. I'd give you all plusses if I could, but I only started the account last night so I could send an answer to someone else's question I saw while I was looking for the answer to my own question.
Apr 16 '12 at 05:21 PM
aviose
(comments are locked)
|

You need to change the base one so that it has the same paramaters. If you were using C# I would be able to help you more, but I'm afraid I'm not too familiar with how UnityScript handles inheritance.