Is it possible to extend more then one abstract class?

I'm trying to convert the java bytecode library in C#

I figured out in the original java bytecode library it extended 2 interfaces or in my case abstract class (because it has variables).

Doesn't seem to work in C#...

class JClassParser : JInstructions, JConstantTypes
{
}

JInstructions gets extended perfectly.. but JConstantTypes doesn't work..

of course the workaround I have to use it like this.. JConstantTypes.Variable in class which you are extending from

link|improve this question

1  
wow... your last sentence... – vlad Jul 11 '11 at 4:05
1  
"Then again im under the influence of marijuana right now so I am not thinking logically" - there's your problem! – Mitch Wheat Jul 11 '11 at 4:08
hey that has nothing to do with it.. it actually helps me be more productive i'm a newbie :S – SSpoke Jul 11 '11 at 4:08
1  
So... you are saying there is not much difference between a newbie on drugs and a newbie not on drugs? – aqwert Jul 11 '11 at 4:10
In my non-professional opinion, this is the stupidest comment thread I've seen so far on this site. – Mike Caron Jul 11 '11 at 4:14
show 2 more comments
feedback

1 Answer

up vote 4 down vote accepted

No, C# has single inheritance only.

However, you could just use Interfaces instead, since that's basically the same thing:

class JClassParser : IInstructions, IConstantTypes
{
    // implementations of the above interfaces
}
link|improve this answer
what are user interfaces? what is IInstructions? IConstantTypes? are those just interfaces? – SSpoke Jul 11 '11 at 4:08
They are typos :) Anyway, Interfaces in C# are exactly like interfaces in Java. – Mike Caron Jul 11 '11 at 4:10
1  
@Mike Caron... Hint: don't feed the troll. – mjv Jul 11 '11 at 4:11
@mjv: there was a legit typo in my answer. – Mike Caron Jul 11 '11 at 4:12
I'm not trolling I'm really having difficulties here. – SSpoke Jul 11 '11 at 4:14
show 10 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.