November 2nd, 2003 03:43 PM
If only bit of information you got out of this article was the introduction then you got short changed. It promised that even advanced readers would learn a thing or two here and there, I'm suprised...
November 2nd, 2003 08:06 AM
Yah slarty is correct.
Remember a templated function
template <>
void foo<1>();
is different then
template <>
November 1st, 2003 08:40 PM
Thanks for the kind words everyone, if you read through the tutorial you will notice that it just ends in the middle of a section. Well I got tired of writing and decided that there is enough...
November 1st, 2003 12:49 AM
Introduction
People claim that to design a large and complex system requires an experienced programmer. Though I feel to design such a system you only need a programmer that understands how to...
October 31st, 2003 03:52 AM
If you would stay in context to my post then you would know that I'm refering to Input in the game cycle. I only brought up inputing to show that it was a detail in the game cycle but not an...
October 28th, 2003 05:46 PM
It's not that they don't have to worry about input but it is generally as hard as writing the initializing code for starting up a window, it is trivial. Also handling input takes no real time...
October 27th, 2003 03:34 PM
I suppose not and this is also my personal experience working at software houses. I certainly don't constitute for all software development houses but I can speak for the ones I have worked at. If...
October 26th, 2003 04:42 PM
No not all but if you go and work at any software house that produces software of any reasonable size it will. I can't think of one project that I've worked on in the last four years that wasn't...
October 26th, 2003 08:42 AM
IMO the first thing you should be teaching your students is the rules of scope and namespaces can fall quite easily into one of these lectures. Honestly you can tell me students wont understand it...
October 26th, 2003 01:16 AM
Please - he wasn't refering to shadowing the std::cout with a local scoped variable, take your semantics else where.
Though I'm going to partially-retract my statement because it is possible that...
October 26th, 2003 01:12 AM
It is obvious that you havn't worked on any real projects before because you would understand that compiling can take over a day to complete. The company I work at has strick standards on what can be...
October 25th, 2003 06:09 PM
No, cout will always display to the console window, you may be confused with ostream. The difference between cout and ostream is cout is an object while ostream is a type. The ostream type can be...
October 25th, 2003 05:56 PM
Half-smart programmer should be the defining quote because a smart programmer would not put all their std dependencies in an include file. The compile time of the project will increase...
October 24th, 2003 05:25 AM
The code you posted is correct but reading your error shows that the problem does not lie within that line. "warning: friend decleration of operator << declares a non-template function" that gives me...