A
Anonymous
Guest
ive been having a lot of fun learning javascript
[This message has been edited by Srethron Askvelhtnod (edited September 07, 2001).]Microsoft manages to do everything possible wrong in their MFC framework. They have esentially stripped away what is beutiful with C++, you have to program directly to the Windows API instead of using some middle-layer like the rest of the world does. I feel it's a bit prehistoric, really... Also, the compiler itself lacks a lot of C++ features (for instance decent template support).
True to some extent. However, when you're programming something where every second counts, you might consider doing it with assembler. Besides, with Assembler you can do all the required optimizations immediately when new processors with new "features" are out. On a side note, I can't think of anyone sane enought to write in direct binaryOriginally posted by ficedula
Languages that're harder also aren't necessarily any better! Assembler is THE hardest "language" short of straight binary, but on a modern PC there's very little advantage to it over C++ or Delphi; modern CPU's do so much optimisation that hand coded assembler is only rarely any better.
Exactly, I don't understand why you guys mix up Visual C++ & C++. Visual C++ is just C++ with lots of "graphics" and libraries premade for the Windows enviroment(another of Msft's sales gimmicks). Visual C++ is just "C++ packaged and endorsed for use with Msft products"Originally posted by ficedula
And unlike VC++ it runs on Linux (Yes, I know C++ code runs on Linux, of course, but if you've written in VC++ it's probably not going to).
Lol. With that you find a whole bunch of idiots in the world memorizing the MFC classes. When asked to do something different, they say, "Eh, it's not in my MFC manual, so it isn't possible. We'll wait till Msft thinks of a workaround"Originally posted by Srethron Askvelhtnod as a quote of dagsverre
They have esentially stripped away what is beutiful with C++, you have to program directly to the Windows API instead of using some middle-layer like the rest of the world does