Delay!

The Partridge Family were neither partridges nor a family. Discuss.
User avatar
chili
Site Admin
Posts: 3948
Joined: December 31st, 2011, 4:53 pm
Location: Japan
Contact:

Delay!

Post by chili » July 2nd, 2012, 6:33 am

Wasn't able to finish recording the next lesson last night (got 45 mins recorded though), so it's probably going to be a couple of days until the next one comes out. It might end up being so confusing that I have to redo it :lol: but, I will upload it anyways and see what you guys think of it.
Chili

User avatar
codinitup
Posts: 112
Joined: June 27th, 2012, 7:43 am

Re: Delay!

Post by codinitup » July 2nd, 2012, 6:34 am

Sweet! What's the topic of the video?
MOOOOOO

User avatar
chili
Site Admin
Posts: 3948
Joined: December 31st, 2011, 4:53 pm
Location: Japan
Contact:

Re: Delay!

Post by chili » July 2nd, 2012, 6:35 am

Makin' classes. 8-)
Chili

User avatar
npissoawsome
Posts: 114
Joined: June 8th, 2012, 3:01 pm

Re: Delay!

Post by npissoawsome » July 2nd, 2012, 6:36 am

chili wrote:Makin' classes. 8-)
awww.. kick me in the face, I know everything about them :(

User avatar
chili
Site Admin
Posts: 3948
Joined: December 31st, 2011, 4:53 pm
Location: Japan
Contact:

Re: Delay!

Post by chili » July 2nd, 2012, 6:39 am

npissoawsome wrote:awww.. kick me in the face
Wait, let me get my spiked boots on...
Chili

nG Inverse
Posts: 115
Joined: April 27th, 2012, 11:49 pm

Re: Delay!

Post by nG Inverse » July 2nd, 2012, 6:50 am

I knew it lol!

I was waiting til Monday morning MY TIME GMT -5 (currently 3 AM) for the video since you said done by the weekend. Oh well, glad you informed us, thanks!

Jeez...time for bed.

User avatar
npissoawsome
Posts: 114
Joined: June 8th, 2012, 3:01 pm

Re: Delay!

Post by npissoawsome » July 2nd, 2012, 7:48 am

chili wrote:
npissoawsome wrote:awww.. kick me in the face
Wait, let me get my spiked boots on...
When you say creating classes, does that cover all the good stuff like templates and inheritance?

Because if templates were included in there, I would actually be learning something ;)

User avatar
LuX
Posts: 1492
Joined: April 22nd, 2012, 12:33 pm
Location: Finland

Re: Delay!

Post by LuX » July 2nd, 2012, 9:00 am

You might go over different function types as well, these are exactly the things I haven't got a damn idea about yet... I usually just wiggle around with the functions when they could be coded 10 easier, if I only knew how to, and what the different function types are and what they do.

Until now I've only used basic voids in all ways you can imagine : -D
ʕ •ᴥ•ʔ

User avatar
npissoawsome
Posts: 114
Joined: June 8th, 2012, 3:01 pm

Re: Delay!

Post by npissoawsome » July 2nd, 2012, 9:14 am

LuX wrote:You might go over different function types as well, these are exactly the things I haven't got a damn idea about yet... I usually just wiggle around with the functions when they could be coded 10 easier, if I only knew how to, and what the different function types are and what they do.

Until now I've only used basic voids in all ways you can imagine : -D
function types are pretty much all the same, except for their return value

so if I had

Code: Select all

bool foo()
{

}
at the end of the function I would need

Code: Select all

return true;
or

Code: Select all

return false;
or return any variable that was a bool

works the same for everything :)

Also, in case you didn't already know, void means nothing, so if I have a void function, it means it doesn't return anything

User avatar
LuX
Posts: 1492
Joined: April 22nd, 2012, 12:33 pm
Location: Finland

Re: Delay!

Post by LuX » July 2nd, 2012, 9:19 am

Thanks for clearing that. So if the foo function had:

Code: Select all

bool foo()
{
    int x = 0;
    if (x == 0) {return true;} else {return false;} // always true...
}
and then used:

Code: Select all

bool Test = foo();  // Will "Test" become true?
ʕ •ᴥ•ʔ

Post Reply