473,386 Members | 1,817 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Learning C++

Hi everyone,

I am learning c++ using the deitel c++ how to program 4th edition. I am
currently finishing chapter 7 and I am pretty blown away. I am not really
having trouble understanding the code or concepts it just seems like a ton
to learn/remember. I was hoping some of you more experience c++ programmers
could give me some tips on online resources for code and books that I should
buy to accompany the ones I have now (the deitel book and c++ programming
for linux).

Thanks in advance,

Shock
Jul 19 '05 #1
6 3532

"Shock" <sh*****@charter.net> wrote in message
news:vp************@corp.supernews.com...
Hi everyone,

I am learning c++ using the deitel c++ how to program 4th edition.
IMO a good quality text.
I am
currently finishing chapter 7 and I am pretty blown away. I am not really
having trouble understanding the code or concepts it just seems like a ton
to learn/remember.
Your perception is accurate. C++ is a very large language
(compared to C for example). I don't think anyone can
'remember' all of it, that's why we have so many books
around. I own hundreds of programming books, probably
around 20-25 are specifically about C++, its standard
library, and C++ design and usage techniques. And I'm
saving my nickels to buy more... :-)

There are also some good trade publications, such as
C/C++ Users Journal (www.cuj.com) which have good articles
'from the trenches', written by practicing professionals.
I was hoping some of you more experience c++ programmers
could give me some tips on online resources for code and books that I should buy to accompany the ones I have now (the deitel book and c++ programming
for linux).


http://www.parashift.com/c++-faq-lite/

http://www.contrib.andrew.cmu.edu/~a...acllc-c++.html
Sections 6,7,8 probably of particular interest to you.

C++ is a platform-independent language, so your host
platform doesn't really matter, as long as a C++
implementation for it is available.

And remember, we're all here, willing to assist
when you want/need it.

Good luck!

HTH,
-Mike
Jul 19 '05 #2
On Fri, 17 Oct 2003 17:48:55 -0500, Shock wrote:

* snip request for book recommendations *
Thanks in advance,

Shock


Hey Shock,

1) The C++ Standard Library by Josuttis
http://www.bookpool.com/.x/3zn8pi9590/sm/0201379260
2) Design Patterns by Gamma, et. al.
http://www.bookpool.com/.x/3zn8pijbfr/sm/0201633612
--
Benny
Remove your rose colored glasses before e-mailing me

Jul 19 '05 #3
"Benny Hill" <benny_hill3@your_rose_colored_glassesyahoo.com> wrote in
message
news:pan.2003.10.17.23.38.04.682018@your_rose_colo red_glassesyahoo.com...
On Fri, 17 Oct 2003 17:48:55 -0500, Shock wrote:

* snip request for book recommendations *
Thanks in advance,

Shock


Hey Shock,

1) The C++ Standard Library by Josuttis
http://www.bookpool.com/.x/3zn8pi9590/sm/0201379260
2) Design Patterns by Gamma, et. al.
http://www.bookpool.com/.x/3zn8pijbfr/sm/0201633612


While both are excellent books that imo every C++ coder
should eventually own, I feel they're rather 'advanced'
for the novice, as 'Shock' seems to be.

Shock: Do note these titles for later.

-Mike
Jul 19 '05 #4
In article <vp************@corp.supernews.com>,
Shock <sh*****@charter.net> wrote:
Hi everyone,

I am learning c++ using the deitel c++ how to program 4th edition. I am
currently finishing chapter 7 and I am pretty blown away. I am not really
having trouble understanding the code or concepts it just seems like a ton
to learn/remember. I was hoping some of you more experience c++ programmers
could give me some tips on online resources for code and books that I should
buy to accompany the ones I have now (the deitel book and c++ programming
for linux).


Effective C++ is often recommended but I'll give it a particular plug for someone
at your level (knows a bit but is starting to feel lost). Meyer's approach of
explaining why you should and shouldn't do certain things gave me a much better
understanding of what some features of C++ were there for. My understanding of
what virtual functions do and what problems they try to solve was improved by his
example of a particular bit of hard to maintain code that is made much easier with
virtual functions. After reading that I actually understood why I should use them,
not just how to use them. Don't really *get* friend functions? Read up on when
you should use friend functions and when you should use member functions.

If it's too advanced for you now then put it aside and come back to it later.

Alan
--
Defendit numerus
Jul 19 '05 #5
Thanks everybody. I got a lot of good resources and books recommendations.
I have to say that I have done visual basic, php, javascript, cobol (yuck),
ada, and a few other languages and I like c++ the best. I am looking
forward to using your recommendations and getting better and better.

Thanks again,

Shock

"Alan Morgan" <am*****@Xenon.Stanford.EDU> wrote in message
news:bm**********@Xenon.Stanford.EDU...
In article <vp************@corp.supernews.com>,
Shock <sh*****@charter.net> wrote:
Hi everyone,

I am learning c++ using the deitel c++ how to program 4th edition. I am
currently finishing chapter 7 and I am pretty blown away. I am not reallyhaving trouble understanding the code or concepts it just seems like a tonto learn/remember. I was hoping some of you more experience c++ programmerscould give me some tips on online resources for code and books that I shouldbuy to accompany the ones I have now (the deitel book and c++ programming
for linux).
Effective C++ is often recommended but I'll give it a particular plug for

someone at your level (knows a bit but is starting to feel lost). Meyer's approach of explaining why you should and shouldn't do certain things gave me a much better understanding of what some features of C++ were there for. My understanding of what virtual functions do and what problems they try to solve was improved by his example of a particular bit of hard to maintain code that is made much easier with virtual functions. After reading that I actually understood why I should use them, not just how to use them. Don't really *get* friend functions? Read up on when you should use friend functions and when you should use member functions.

If it's too advanced for you now then put it aside and come back to it later.
Alan
--
Defendit numerus

Jul 19 '05 #6

"Shock" <sh*****@charter.net> wrote in message
news:vp************@corp.supernews.com...
Hi everyone,

I am learning c++ using the deitel c++ how to program 4th edition. I am
currently finishing chapter 7 and I am pretty blown away. I am not really
having trouble understanding the code or concepts it just seems like a ton
to learn/remember. I was hoping some of you more experience c++ programmers could give me some tips on online resources for code and books that I should buy to accompany the ones I have now (the deitel book and c++ programming
for linux).


In addition to the online version of the C++ FAQ, you should also purchase
the book C++ FAQs by Cline. It's bigger and has more stuff than the online
version. A great resource, easy and succinct.
Jul 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Ron Stephens | last post by:
The newly rechristened Python Learning Foundation is a web site dedicated to the assistance of people learning the Python programming language. Features include: 1. Daily lists of new and recent...
29
by: Jhon smith | last post by:
Hi,all,I was just wondering if I am likly to have any problems trying to learn C from older books,I have some from the late 80`s,mid/late 90`s. I am using Dev-C++ on the pc windows platform,But I...
4
by: Christian Blackburn | last post by:
Hi Gang, I saw this for sale online: Microsoft Visual Basic.NET Deluxe Learning Edition Version 2003. I'm wondering is the CD that's bundled with the learning edition just a digitized version of...
1
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej...
7
by: Max | last post by:
On monday I start a semester course in Python (the alternative was Java). I was looking through the course outline and noticed the following: 1) UserDict is used. This is deprecated, right? 2)...
36
by: utab | last post by:
Dear, I have experince in C( numerical projects, like engineering problems, scientific applications) I have the basic notion of C++ also, I have read Accelerated C++ until Chapter 7, however it...
2
by: bokiteam | last post by:
Hi All, Here is my idea to save learning time - Personal learning book. What we really need is somebody really familiar our learning experience, and then takes the example to teach us. Save...
78
by: arnuld | last post by:
hai all, i am standing on a "crossroad to C++". I am here in front of you as i have a problem. i will be brief. Please do not think: "arnuld is sick", i am really struggling & doing hard-work to...
0
by: LK~ICT | last post by:
Sri Lanka rural e-learning project seeks corporate support Dec 04, 2007 (LBO) - A Sri Lankan e-learning initiative for rural students is seeking corporate sector support to expand and cover 400...
16
by: John Salerno | last post by:
Just something that crosses my mind every time I delve into "Learning Python" each night. Does anyone see any value in learning Python when you don't need to for school, work, or any other reason?...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.