Confused about is-a relationship (static and dynamic types) [Answered]
What's with the syntax on the second line? And why would we ever use the syntax on the second line if it limits us to using only the members in DerivedClass? Like is
The same as
45 Replies
Is it fair to rephrase the question as "Why would you ever want to use a parent type instead of the actual type for a variable"?
Yeah I guess
Well, for a local variable you basicly don't.
I think that's the question I'm trying to get at.... I think
but for return types, or class properties, you do
I don't understand, wdym by basically don't?
return types and class properties in what context? Like types and properties for the baseclass or derived class?
I still don't understand the syntax and purpose of such a weird way to initialize an object. Why can't you just do
BaseClass newObjectB = new BaseClass(209.21312f)
instead of BaseClass newObjectB = new DerivedClass(209.21312f);
?
Wouldn't there be zero differences between these code?
Except for it's syntax, like functionally no difference?There is a ton of difference
You see, the type you give after
new
is the "actual" type
while the type of the variable is the "apparent" type
1 sec, lemme write some sample codeš¤
if I now do
what do you think is printed?
mhmmmmm
š¤
I think this will be executed
Console.WriteLine(Value);
Instead of Console.WriteLine(Value * 3);
Pobiega#2671
REPL Result: Success
Console Output
Compile: 691.196ms | Execution: 54.397ms | React with ā to remove this embed.
So it would probably be
100
as the output
wait what on earth??? I don't get it, what's going on?Well, the
item
is actually a DerivedClass instance
its just stored in a BaseClass
variableWait hold on I'm even more confused
How can it store a reference type inside a reference type?
Is it like a pointer of a pointer in memory ?
this isnt C/C++, stop thinking about pointers š
DerivedClass inherits BaseClass, ye?
that means that a DerivedClass is a BaseClass. It can just ALSO do other things
It helps me sometimes to think of it this way cuz most of what I apply in practice to learn is what I've learned in my first advanced programming class
So wouldn't it make sense to just declare it as
DerivedClass item = new DerivedClass
in this case, absolutely
thats what I meant with
Well, for a local variable you basicly don't.however, there are situations where this "trick" is really useful as we saw, the actual class decides what code gets executed (when using virtual/override) So imagine a system that receives messages with a "key" property and a body of data now, there are hundreds of different message types each of them needs to be processed differently, and we want to code this up in a nice way
When u say messages, r u talking about one of those HTTP Get/Request thingy magik?
sure why not
its just some generic message at this point
ok, got it
I'm still not clear on the virtual/override keyword. What's the virtual keyword?
virtual makes the method overridable
If I have a virtual keyword put in place, does that mean all invokation on that virtual method is actually invoking it's derivedclass substitute of that method"?
yup
assuming the calling type is a derived class
yes
oh, so every invokation to a virtual method is always an invokation to it's overriden counterpart
yeah, unless the actual type is the baseclass
So in the same sense derivedclass can use a method from the baseclass, a baseclass can use a method from it's derivedclass right?
BaseClass base = new BaseClass(); base.DoSomething();
would still invoke the base method
yeah, as long as its virtualWOuld it still invoke the base method if that method is a virtual method?
Does a virtual keyword just basically forces the CLR to execute the overriden method instead of the original method instead?
yes - no derived class is specified or taken into account here
note that the "actual" type is
BaseClass

I'm trying to wrap my head around this. So if you assign a static type to a variable, at the start of runtime, memory of that exact static type is allocated? But this memory changes during runtime when it comes across the dynamic type?
Is this more to do with memory efficiency rather than something functional?
This isn't at all related to "is-a" relationships and derived classes
Wait hold on, that still wouldn't make sense because can't I make the static and reference type the exact same if I want to give it a accurate memory allocation?
oh....
if you mark a field as static, it just means that instance is shared across all instances of the class
it "belongs" to the class, rather than an instance of the class
oh I thought static could also refer to the type declared on the left hand side of the statement
static string whatever = "hello";
thats a static field.
note that using "variable" here is a bit vague
no difference, they are the same
we always use the lowercase one thou
the lowercase is an alias for the uppercase one
but its an alias that can't ever be subverted
unlike String
which could be changed
and strings are reference typesI still don't really understand....
can I still invoke the base method even if that method has the virtual keyword in it?
I'm trying to imagine like what would be the application of doing this weird way of initializing objects
Just to clarify something,
dynamic
is very different š
Ah ty š
Like I said, you wouldn't do it for a local variable
its more commonly used with return types
What's a local variable in this context?
Is this something like a variable declared inside of a method?
yes, exactly that
look at this for example
BobbyMessageHandler
returns a BobbyMessage
, but the interface just specifies an IMessage
.
This is because
I also want a message handler š
the whole purpose of base classes / interfaces is to allow abstractions over what the actual return type is
combined with virtual/override
(or just interfaces), you can let implementing/derived classes decide what should happenI don't know what an interface is, this code is a bit advanced for me
To simply interfaces, an interface is basically a
contract
ensures any type implementing it HAVE to define certain methods/properties
in the case of
A type that implements IMessageHandler
needs to define method IMessage Handle(string body);
ā
This post has been marked as answered!