Linked by MOS6510 on Thu 10th Jan 2013 23:25 UTC
Thread beginning with comment 548303
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
C++ is too big for low level stuff
Why are you using all the bells and whistles of C++ for the low level stuff?
and too complicated for higher level stuff.
Qt seems to be doing all right.
It's almost impossible to master the language... really really hard (at least for stupid people like me... and We're the 99% xD).
Mastering the entire language is only really necessary if you're creating libraries for wide consumption. The difficult C++ features are there to achieve generalization while still retaining static pre-compile type checking.
RE[2]: Sorry, C++ is a PITA.
by radix on Fri 11th Jan 2013 10:54
in reply to "RE: Sorry, C++ is a PITA."
RE: Sorry, C++ is a PITA.
by Soulbender on Fri 11th Jan 2013 04:59
in reply to "Sorry, C++ is a PITA."
RE[2]: Sorry, C++ is a PITA.
by lucas_maximus on Fri 11th Jan 2013 13:28
in reply to "RE: Sorry, C++ is a PITA."
RE[2]: Sorry, C++ is a PITA.
by sergio on Fri 11th Jan 2013 19:55
in reply to "RE: Sorry, C++ is a PITA."
Even the stupidest people, like myself, can read Java code and get a general idea of what it does. It's a very simple and beautiful language to read.
Over engineering is not a language problem. You can over-engenier in assembler if you want.
The problem with C++ is the language complexity itself, It's difficult with or without over engineering.
RE: Sorry, C++ is a PITA.
by moondevil on Fri 11th Jan 2013 07:44
in reply to "Sorry, C++ is a PITA."
RE[2]: Sorry, C++ is a PITA.
by ebasconp on Fri 11th Jan 2013 21:24
in reply to "RE: Sorry, C++ is a PITA."
C++ is too big for low level stuff and too complicated for higher level stuff.
Uhmm, no. It's just a language. Bloatness and overcomplication is caused by the coder doing all the wrong things.
All in all, while I'm not old myself, I still I'm fairly "weird" in not trusting coders who don't know c and/or c++. If they know, but choose to use something else for a specific task/project, and they have an explainable reason why, that's OK with me. Not knowing it, or not using it for reasons like the quote, is a no-go.
RE[2]: Sorry, C++ is a PITA.
by lucas_maximus on Mon 14th Jan 2013 11:12
in reply to "RE: Sorry, C++ is a PITA."





Member since:
2005-07-06
C++ is too big for low level stuff and too complicated for higher level stuff. It's almost impossible to master the language... really really hard (at least for stupid people like me... and We're the 99% xD).
I think the smart way to go is plain old C for system level stuff and Java or C# for user level stuff.
Android is the perfect example of this kind of mixture. Profit.