How can I improve my C++?

T

tony

Hi,
now I've known the basics about C++. What I can do is pretty limited.
I've known something in Java:
1.Networking(Socket, RMI, Servlet)
2.Database(JDBC)
3.GUI (Java Swing)
4.and some others APIs...
I'm wondering how can I do all of the above in C++.
And I've heard that reading source codes can help one
improve its programming skills, but I don't know how to
read them.
Please help me! Thank you!
 
J

John Harrison

tony said:
Hi,
now I've known the basics about C++. What I can do is pretty limited.
I've known something in Java:
1.Networking(Socket, RMI, Servlet)
2.Database(JDBC)
3.GUI (Java Swing)
4.and some others APIs...
I'm wondering how can I do all of the above in C++.
And I've heard that reading source codes can help one
improve its programming skills, but I don't know how to
read them.
Please help me! Thank you!

Well the big difference between Java and C++ is that Java is paltform
independent and C++ isn't (or, as they say, Java is a platform). All of
those things can be done in C++ but they would be done differently if
you were programming Windows, Linux or whatever.

So the best thing is to decide what platofrm you want to program for,
and then take your question to the appropriate group.

comp.os.linux.deveopment.apps or comp.os.ms-windows.programmer.win32

for instance.

I would have thought that reading books would help more than reading
source code, but perhaps that is just me.

john
 
G

gordon.is.a.moron

Hi,
now I've known the basics about C++. What I can do is pretty limited.
I've known something in Java:
1.Networking(Socket, RMI, Servlet)
2.Database(JDBC)
3.GUI (Java Swing)
4.and some others APIs...
I'm wondering how can I do all of the above in C++.
And I've heard that reading source codes can help one
improve its programming skills, but I don't know how to
read them.
Please help me! Thank you!

The difference with Java is that you're given all of these API's as
part of Java itself, whereas in C++ you have various different
libraries to achieve these things. I'm from Java myself (er sounds
like a planet...) and plan to use WxWidgets, although I'm told it's a
very Java-like library, but I didn't have much choice. I wanted to use
Sockets and Threads using VS 2005 Express (no MFC...) and it seems to
have a good reputation.

If you have money to burn you might try MFC and other MS
libraries, .NET is very similar to Java, but covers more languages.
Although NET C++ is managed so it's not "real" C++. There are other
libraries like Qt and the like, I'm sure there are tons of open source
ones to choose from for GCC (can run on Win and Linux).

Gordy
 
T

tony

John said:
Well the big difference between Java and C++ is that Java is paltform
independent and C++ isn't (or, as they say, Java is a platform). All of
those things can be done in C++ but they would be done differently if
you were programming Windows, Linux or whatever.

I think I would like to programme on Linux.
So the best thing is to decide what platofrm you want to program for,
and then take your question to the appropriate group.

comp.os.linux.deveopment.apps or comp.os.ms-windows.programmer.win32

for instance.

I would have thought that reading books would help more than reading
source code, but perhaps that is just me.

john

Actually, I don't know what books are good and suitable for me to read.
Do you have any suggestions?
 
J

John Harrison

Actually, I don't know what books are good and suitable for me to read.
Do you have any suggestions?

Without knowing more your current knowledge and what you're looking for
it's hard to be sure.

But you say you know the basics of C++, when I was in that position I
found the 'Effective' books by Scott Meyers extremely useful. In fact
say I'd those books taught me more C++ than anything else I've read.

'Effective C++' and 'More Effective C++' by Scott Meyers.

john
 
J

James Kanze

tony wrote:
Well the big difference between Java and C++ is that Java is paltform
independent and C++ isn't (or, as they say, Java is a platform). All of
those things can be done in C++ but they would be done differently if
you were programming Windows, Linux or whatever.

Not completely. The real difference is that Java provides
standard libraries for all of these things, where as in C++, you
need third party libraries. If I had to do a GUI in C++, for
example, I certainly wouldn't program Windows or X specific; I'd
use wxWidgets, or something along those lines.
 
V

voger

John Harrison wrote:

'Effective C++' and 'More Effective C++' by Scott Meyers.

Just a clarification here please. One should read both of them
or just one of them? 'More Effective C++' is the sequel of 'Effective C++'
or is just the improved version?
 
J

Jerry Coffin

John Harrison wrote:



Just a clarification here please. One should read both of them
or just one of them? 'More Effective C++' is the sequel of 'Effective C++'
or is just the improved version?

It's a sequel. The "improved version" is the third edition of _Effective
C++_.
 
T

tony

John said:
Without knowing more your current knowledge and what you're looking for
it's hard to be sure.

But you say you know the basics of C++, when I was in that position I
found the 'Effective' books by Scott Meyers extremely useful. In fact
say I'd those books taught me more C++ than anything else I've read.

'Effective C++' and 'More Effective C++' by Scott Meyers.

john

Thank you for your advice!

Tony
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top