473,602 Members | 2,811 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 3576

"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
2143
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
3472
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
2053
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
9613
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
1578
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
2503
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
1239
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
4151
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
1550
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
1748
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
7993
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
7920
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
8404
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8054
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
8268
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5440
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3900
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
3944
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2418
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

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.