473,779 Members | 2,062 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 3603

"Shock" <sh*****@charte r.net> wrote in message
news:vp******** ****@corp.super news.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@yo ur_rose_colored _glassesyahoo.c om> wrote in
message
news:pan.2003.1 0.17.23.38.04.6 82018@your_rose _colored_glasse syahoo.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*****@charte r.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.Stanfo rd.EDU...
In article <vp************ @corp.supernews .com>,
Shock <sh*****@charte r.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*****@charte r.net> wrote in message
news:vp******** ****@corp.super news.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
2150
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 Python-related web articles, Sourceforge projects, and Vaults of Parnassus listings. These are generated using Hans Nowak's Python web spider, mygale.py, and are automatically updated each day. (You can visit Han's interesting blog at <a href =...
29
3507
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 have noticed small differnces in the books such as,int main(),main(void),fprintf,and others,just wondering if these older books are still worth trying to learn from as Im on a very tight budget and can`t really afford any thing else,or are they...
4
2060
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 the book or is it an interactive tutorial? Thanks, Christian Blackburn
1
9654
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 and I was wondering if anyone here would be able to give me some tips for young players such as myself, for learning the language. Is this the best Newsgroup for support with JAVA?
7
1588
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) There is no mention of list comprehensions, but map and filter are taught early and then revisited later. I don't think this is good: list comprehensions are, IMO, one of Python's great features, Psyco prefers them, they're more pythonic, and map...
36
2547
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 seems that it discusses the std and the other part of the language with your own abstractions. Is that better to read a book first on the basic concepts of C++ language (but not the C part) that gives the basics as if the reader is a beginner...
2
1249
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 the learning time. For example, a person David who understands JAVA, VB, C programming, he doesn't want to pay too much time to study a C# programming book. If
78
4210
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 become a Modern C++ Programmer & i am feeling as if i am standing on a crossroad. i am asking because every time i made a decision on my own, in my past, i always ran into huge wastage of time, money & effort. that is why i am posting it here:
0
1556
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 computer centers around the island, its designers said. The Shilpa Sayura project initiated by eFusion, a local software company, is a learning tool for rural students who do not have the necessary number of teachers and lack resources to...
16
1765
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? I mean, sure, there's value in learning anything at any time, but for something like a programming language, I can't help but feel that I will be mostly unable to use what I learn simply because I have no reason to use it. The *process* of...
0
9474
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10306
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10074
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8961
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7485
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5373
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5503
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4037
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3632
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.