Hi, I need to diagram a C++ template class hierarchy and its relationships to other classes in a Policy based design. Is there a tutorial online that shows how...
... Did you try googling for any? http://www.google.com/search?q=UML+tutorial -- Brett ... "In the rhythm of music a secret is hidden; If I were to divulge it,...
I am putting the numbers on the screen by laborious handwork. I am sure that there is a for loop for such a process. does anyone know of such a loop for the...
I am putting the numbers on the screen by laborious handwork. I am sure that there is a for loop for such a process. does anyone know of such a loop for the...
Does anyone know what the looping constructs are that are used in command line interfaces that use a switch such as -d or -a in their argv? Any argv value...
... The POSIX approach is to use getopt(). But it is fairly easy to roll your own. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus...
... for (int i = 0; i < 12; i++) { // this will give us the number of degrees from the '12' on the circle to the number 'i'. (0 equals 12) float deg = (i / 11)...
... ...why? Thanks, Tyler Littlefield Web: tysdomain.com email: tyler@... My programs don't have bugs, they're called randomly added features. ... ...
Tyler Littlefield
tyler@...
May 2, 2009 7:23 pm
70330
hi guys, please help me choose which language to learn C# or C++? i'll be working primarily on windows environment. I also want to program games, tools and...
... C++... C# seems to me to be a glorified VisualBasic and ties you a particular platform. C++ will give you a lot more flexibility, performance (especially...
hello, If your doing windows programming, I recommend c#. If you want to go cross-platform, I recommend c++. Thanks, Tyler Littlefield Web: tysdomain.com ...
Tyler Littlefield
tyler@...
May 4, 2009 1:57 pm
70333
Thanks Brett! I'm currently studying c++ now but i just came across reading some articles saying that C# works faster than those codes written in C++....
... C# is probably more like Java than it is C++, and also requires the use of a runtime environment (CLR), whereas C++ is native code and needs to be compiled...
... Hi, There is always a potential issue when discussing the merits of C# versus C++ or Java or whatever. The discussion usually fails to mention that C# is...
it really doesn't. Thanks, Tyler Littlefield Web: tysdomain.com email: tyler@... My programs don't have bugs, they're called randomly added features....
Tyler Littlefield
tyler@...
May 4, 2009 2:14 pm
70337
... I'll be the one that is singled out. ;) C# has the ability to be as fast, if not faster, than C++. With the JIT, you have automatic-optimizations that...
Christopher Coale
chris95219@...
May 5, 2009 12:34 am
70338
... Why discriminate? Learn them both! -- John Gaughan http://www.jtgprogramming.org/...
... Without looking at the source (and really only the interface is dictated by the standard, implementations may vary), I would say a linked list. Access is...
... And, when you see such articles, all you have to do is ask yourself: "What language is this language written in?" The answer is almost always "C/C++ with a...
... I also see the claim constantly that Java can run as fast as, if not faster than, a C++ program, but have yet to see this in the real world. The startup...
the concept of java being slower than C++ must be fixed. imho java is also built under C so it should be as fast as C or C++. according to my experience, what...
... As Thomas said, the only tests most people do are trivial and small: e.g. doing something simple and looping a zillion times. That is not accurate. All it...
In my smartphone native C++ & Qt applications loads faster than even JAVA applications & JAVA applications consumes morn battery than native applications , so...
[mod-- That isn't a C or C++ statement. At best it's an expression. What does your reference manual say malloc does? --mod PN] hi, malloc(64) what will this...
... Assuming your compiler does not flag this, it will likely give you a huge headache. Sure, you are allocating 64 bytes of memory, but you aren't assigning a...
... It looks like a badly phrased question of "How does malloc work?" as opposed to "What does malloc (in general) do?" How malloc works differs from compiler...