Thread: Where to go once you've learned C++?

  1. #1
    Registered User
    Join Date
    Aug 2005
    Posts
    204

    Where to go once you've learned C++?

    I have a 1,000 page C++ textbook. There are a few things it that I still don't know, but I've got a good handle on most of it. I've learned some C too. Where should I go next?

  2. #2
    MFC killed my cat! manutd's Avatar
    Join Date
    Sep 2006
    Location
    Boston, Massachusetts
    Posts
    870
    GUI, if you don't know it
    or
    Graphics programming (OpenGL/DirectX)
    or
    Assembly language programming
    Silence is better than unmeaning words.
    - Pythagoras
    My blog

  3. #3
    Registered User Tonto's Avatar
    Join Date
    Jun 2005
    Location
    New York
    Posts
    1,465
    Learning things like graphics libraries and assembly language and different libraries can give you some good learning experience, but some people think that fussing about language semantics and grammar is learning how to program. It really isn't. You have to learn to apply your skills and think of problems to solve and stuff. You may or may not have known this stuff already, and if you need some good ways to apply some of the C++ that you already know, doing something with some library can be good experience.

  4. #4
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    I'm afraid I'm going to deviate from the replies already given, but...

    What makes you think you have learned C++ and C? Most people with years of actual experience on them will still probably be careful in admitting such a thing.

    The natural step after reading a 1000 page book on C++, as you seem to have, is to actual program in C++. Honestly, if you find yourself asking the question you just made, you haven't learned C++. In fact you have a poor view of programming languages since you just don't pick them like apples, put them on some mental equivalent to a basket, and move on to the next programming language.

    If you are asking instead for an idea for a project, search the forums for "project ideas". There's heaps of posts on that subject.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  5. #5
    Registered User Tonto's Avatar
    Join Date
    Jun 2005
    Location
    New York
    Posts
    1,465
    Well, your opinion doesn't really deviate from mine. I just 'know' that the term 'know' is thrown around loosely, and I also agree that the OP should apply some critical thinking and problem solving skills to attain a better understanding of programming and the C++ language in general. When you just start thinking of crazy ways to make your application cooler, you run into so many things that you could learn and all sorts of different methods of solving things.

  6. #6
    Registered User Frobozz's Avatar
    Join Date
    Dec 2002
    Posts
    546
    Quote Originally Posted by thetinman
    I have a 1,000 page C++ textbook. There are a few things it that I still don't know, but I've got a good handle on most of it. I've learned some C too. Where should I go next?
    A number of interesting responses have been given, but I'd have to say that depends on what you are interested in. Also what book is it? I've been thinking of learning a bit more about C++ and I've more or less run out of useful online tutorials. Not to mention my book is from the days of Borland Turbo C++.
    Last edited by Frobozz; 12-04-2006 at 11:37 PM.

  7. #7
    Hurry Slowly vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    6,788
    I think a little study of algorithms will be usefull... just to understand why O(log(n)) is better than O(n) and when you can be still happy with the second one...
    All problems in computer science can be solved by another level of indirection,
    except for the problem of too many layers of indirection.
    – David J. Wheeler

  8. #8
    Registered User
    Join Date
    Aug 2005
    Posts
    204
    Quote Originally Posted by Mario F.
    I'm afraid I'm going to deviate from the replies already given, but...

    What makes you think you have learned C++ and C? Most people with years of actual experience on them will still probably be careful in admitting such a thing.

    The natural step after reading a 1000 page book on C++, as you seem to have, is to actual program in C++. Honestly, if you find yourself asking the question you just made, you haven't learned C++. In fact you have a poor view of programming languages since you just don't pick them like apples, put them on some mental equivalent to a basket, and move on to the next programming language.

    If you are asking instead for an idea for a project, search the forums for "project ideas". There's heaps of posts on that subject.
    I've learned a significant amount of C++ and C. I'm like Frobozz in that the usefulness of my 1,000 page and the online tutorials is rapidly decreasing.

  9. #9
    Registered User
    Join Date
    Aug 2005
    Posts
    204
    Quote Originally Posted by Frobozz
    A number of interesting responses have been given, but I'd have to say that depends on what you are interested in. Also what book is it? I've been thinking of learning a bit more about C++ and I've more or less run out of useful online tutorials. Not to mention my book is from the days of Borland Turbo C++.
    Problem Solving with C++ by Walter Savitch

  10. #10
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    Then check Tonto's reply.

    Programming languages are notoriously mischievous in that they give us a false sense of knowledge that crumbles like a deck of cards after the first 20 lines of code.

    You will have to apply that knowledge now. By developing some form of small project you would like to. Immediately after you start, you will know what you are missing in know-how. Trust me on this one.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  11. #11
    aoeuhtns
    Join Date
    Jul 2005
    Posts
    581
    I don't think you'll get any reasonably informed answer until you tell us what things you've made with C++ or any other programming language.
    There are 10 types of people in this world, those who cringed when reading the beginning of this sentence and those who salivated to how superior they are for understanding something as simple as binary.

  12. #12
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    Taking into account all other replies, do you understand and can you create working
    programs that incorperate all the things C++ uses? If you can, have a dabble at opengl or direct X. Both of these combine a good knowledge of C/C++. Although opengl is technicly a graphics library, it shows you what amazing things computers can do.
    Looks at NEHE'S tutorial on gamdevelopment.com for more information.

    If games is not your thing, think about "Real World" objects and try to write a program that
    simulates one. Ideas for this would be an elevator, or an ATM machine, or even a data base for a bank. When you are happy with this try windows programming, one of the most
    challenging experiences out there to date
    Double Helix STL

  13. #13
    Ethernal Noob
    Join Date
    Nov 2001
    Posts
    1,901
    Quote Originally Posted by Mario F.
    Then check Tonto's reply.

    Programming languages are notoriously mischievous in that they give us a false sense of knowledge that crumbles like a deck of cards after the first 20 lines of code.

    You will have to apply that knowledge now. By developing some form of small project you would like to. Immediately after you start, you will know what you are missing in know-how. Trust me on this one.
    Know of any good C++ reference books. I find myself looking up even the most basic things for small projects.

  14. #14
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    Know of any good C++ reference books. I find myself looking up even the most basic things for small projects.
    Code:
    C++ coding standards
    is one of the best around.

    Authors: Herb Sutter and Andrel Alexanderscue
    Double Helix STL

  15. #15
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    Hmm... I wouldn't call Coding Standards a C++ reference book. It's an extraordinary book. One I'm happy to have on my still short collection. But it is more a book of good coding practices, as the subtitle attests.

    I know of no good reference C++ book. And I'm starting to doubt it exists. I certainly have looked for one on many bookstores. Of course, Bjarne's own book is a complete reference to C++. But I believe you mean a more traditional-like reference book.

    With that said, The C++ Standard Library: A Tutorial and Reference, from Josuttis is the closest I got. An extraordinary book. It's centered on the STL and details it to the smallest detail. It's certainly a reference book. But it does leave out the C portion of C++.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Learned the basics, SO ?
    By TuxPayne in forum C Programming
    Replies: 4
    Last Post: 09-11-2005, 12:32 PM
  2. Love - learned or inherent?
    By axon in forum A Brief History of Cprogramming.com
    Replies: 42
    Last Post: 01-24-2005, 12:09 PM
  3. Learned optimism
    By Terrance in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 09-25-2003, 03:06 PM
  4. Something I never learned?
    By CodeMonkey in forum C++ Programming
    Replies: 18
    Last Post: 02-23-2003, 08:16 PM
  5. What have you learned?
    By ygfperson in forum A Brief History of Cprogramming.com
    Replies: 2
    Last Post: 10-01-2002, 11:12 PM