C++ Tutorial (41 updated 1) - Absolute n00b spoonfeed
Loading...
12,534
Loading...
Uploader Comments (antiRTFM)
see all
All Comments (19)
-
To understand what the word class in English means I would use and online dictionary. As for programming there is a video to teach what class means.
-
the phrase is "out IN the open." : )
-
@101abob Haha, Im done that and Im learning D++ and Objective-D
-
@BufferOverflowAttack WTFV (watch the f'ing videos) lol. I know the question was asked a long time ago
-
LOL it is in english. Its something you use to combine a whole bunch of things. I cant really explain it well so go back to the other videos
-
what do you think about the new "D" language will you ever learn it?
will you ever put a lesson series on about it?
are there compilers out for D right now?
-
Thank you.
Loading...
You say "Class" a lot in this tutorial, what is that in English? I don't really understand that..
BufferOverflowAttack 2 years ago
did you watch all previous videos? it should be clear if you did
antiRTFM 1 year ago 16
What screen recorder do you use?
HackedVision 2 years ago
CamStudio 2.5
antiRTFM 2 years ago
im not sure if you addressed this issue yet, but what if you want to use differnt integers from differtnt classes, in one expression? like for battle damage formulas
Player_attack/enemy_defense=total damage.
how would i get them to interact if they are in differnt scopes?
ZayLong 2 years ago
through making member functions that provide an interface to the classes' member variables. for example;
int total = john.getValue() + bob.getValue();
ofcourse each case will need its own implementation of this idea. sometimes youl return the variable by value, other times by reference. sometimes youl decide it makes sense for some class to do the job so youl just john.doJob(bob.getValue()) or vice versa...
antiRTFM 2 years ago