Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Jul 10th, 2005, 12:13 AM   #11
uman
Expert Programmer
 
Join Date: Dec 2004
Posts: 794
Rep Power: 4 uman is on a distinguished road
1) Tons
2) Depends on the person, I guess. C++ is far more complex than C.
__________________
Few people deserve to be compared to (Rush) Limbaugh, most of them were convicted at the Nuremburg trials.
--WilliamSChips on Slashdot
uman is offline   Reply With Quote
Old Jul 10th, 2005, 12:21 AM   #12
Navid
Hobbyist Programmer
 
Navid's Avatar
 
Join Date: Feb 2005
Location: Canada
Posts: 187
Rep Power: 4 Navid is on a distinguished road
Send a message via MSN to Navid
Quote:
Originally Posted by uman
2) Depends on the person, I guess. C++ is far more complex than C.
That would apply for me.
Navid is offline   Reply With Quote
Old Jul 10th, 2005, 3:54 AM   #13
stevengs
Professional Programmer
 
stevengs's Avatar
 
Join Date: May 2005
Location: Bad Nauheim, Germany
Posts: 436
Rep Power: 4 stevengs is on a distinguished road
Quote:
Originally Posted by clearbit
..bad habbits..
if the good habbitses live in the Shire, where do the bad habbitses live, my precious?
__________________
-Steven
"Is this a piece of your brain?" - Basil Fawlty
stevengs is offline   Reply With Quote
Old Jul 10th, 2005, 6:29 AM   #14
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Quote:
Originally Posted by kami
If you know it, you can learn any other language in a day.
Bull droppings. If you believe that, you don't know what "knowing" a language is.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Jul 10th, 2005, 7:09 AM   #15
stevengs
Professional Programmer
 
stevengs's Avatar
 
Join Date: May 2005
Location: Bad Nauheim, Germany
Posts: 436
Rep Power: 4 stevengs is on a distinguished road
Quote:
Originally Posted by DaWei
Bull droppings. If you believe that, you don't know what "knowing" a language is.
hehe, I love these speed-readers...." I know lots of languages... I read [ the preface of ] many books ( well ok, sometimes if I was really in a hurry I just read the back of the binding ) and I can tell you about their typing, which programming paradigms they (supposedly) support and whether they utilize late or early binding ( not that I really know what any of that stuph is). I even went to the effort of 'copying and pasting' and even compiling some of the 'hello world' examples. I win!! "


My favourite was:

" Hi, I'm John Doe Jr. I am 14 years old and I know Perl, PHP, HTML, Java, C, C++, Basic, Fortran, Pascal, Ada, SmallTalk, Lisp/Scheme, Python, Modula, Algol, Simula, Haskell, Forth, Curry, Prolog, SQL, Tcl,..... ..... Sed and Awk. Now I am getting bored, and want to learn another language. Which one should I learn now? "
__________________
-Steven
"Is this a piece of your brain?" - Basil Fawlty
stevengs is offline   Reply With Quote
Old Jul 10th, 2005, 8:08 AM   #16
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Even if one knows two languages absolutely fluently, it takes a day to shift the brain gears from one to the other, semantically and syntactically, when one moves from one to the other between serious projects involving professional usage. I grant you that I "wrote" my first Python program in about 5 minutes. It said, "Hello, David." I STILL don't "know" Python.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Jul 10th, 2005, 10:06 AM   #17
Cerulean
Professional Programmer
 
Cerulean's Avatar
 
Join Date: Apr 2005
Location: London, England
Posts: 459
Rep Power: 4 Cerulean is on a distinguished road
Quote:
Originally Posted by navnav
That would apply for me.
Not me. I find C just doesn't scale, and that makes things immensely hard. I find when I write C it _looks_ cryptic - that might just be me, but a fair few fellow coders share the same mentality, so i'm guessing C just doesn't make it easy. C++ makes it easier for me to write elegant code, code that doesn't make me sick at the prospect of having to revisit it a couple of months down the road.

Quote:
1. How much "more" is there to learn on C++?
Well, syntactically you only really have to learn templates and OOP (that's classes, inheritance, polymorphism, operator overloading, and a little more), but you don't have to go as "low level" as C, and that means that you end up having to "learn" less than C. I mean, I don't want to have to learn the 1000 and 1 string manipulation functions for working with char arrays in C! The std::string class (officially typedef, if you want to get technical) lumps all these functions conveniently together, meaning I don't have to constantly worry about buffer overflows, blah blah blah. If you need container classes like double or single linked lists, associative arrays - no problem. C++ has them right there in the STL, just waiting for you
Cerulean is offline   Reply With Quote
Old Jul 10th, 2005, 11:25 AM   #18
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
In addition to learing whatever technical skills you're currently learning, you need to learn how those skills are actually used in the real world (if you're planning a professional career and not just a hobby). I don't know Cerulean, but my take is that he has the bottom-line outlook for the current level of technology that makes him a valuable employee. Thirty years ago C++ and the STL or Python, or whatever, could not be put on the machines of the day. There weren't enough resources affordable to do it. Today you cannot afford to do otherwise. I see people claiming that they'll do nothing but write in assembler. An absolutely MINISCULE number of programmers, percentage-wise, will be paid to write assembly code. A coder can write a given number of working lines of code in a day, more or less, regardless of the language. The number of lines in a high level language produces an order of magnitude more running code than the same number of lines in a low level language. Put yourself in the position of the guy with the wallet who wants to add money, not throw it away, and lay your plans accordingly.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Jul 10th, 2005, 12:31 PM   #19
linuxpimp20
Hobbyist Programmer
 
Join Date: May 2005
Location: ma
Posts: 130
Rep Power: 4 linuxpimp20 is on a distinguished road
if you familar with and understand some of the concepts of C you've been reading about like arrays and for loops, while loops, if else statements etc. you'll have an easier time because those same concepts exist in C++ as well. the hardest part is that you'll have to learn about object oriented programming and some concepts for that will take awhile to grasp. good luck.
linuxpimp20 is offline   Reply With Quote
Old Jul 10th, 2005, 1:06 PM   #20
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
C++ is, with some exceptions, a superset of C. If you write C from your knowledge of C++ the compiler will almost always tell you where you strayed so you can fix it. It's tougher to go the other direction.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 12:31 PM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC