473,486 Members | 2,359 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Anyone recommend some advance topic?

Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
Dec 10 '07 #1
10 1681
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmail.comwrote:
Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
What have you learnt till now??
Dec 10 '07 #2
On 12ÔÂ10ÈÕ, ÏÂÎç10ʱ02·Ö, "vimase...@gmail.com" <vimase...@gmail.com>
wrote:
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmail.comwrote:
Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?

What have you learnt till now??
General speaking£¬I have learnt c++ basic. I have read Thinking in C+
+,Effect C++,More Effect C++ and others
Dec 10 '07 #3
dolphin wrote:
On 12ÔÂ10ÈÕ, ÏÂÎç10ʱ02·Ö, "vimase...@gmail.com" <vimase...@gmail.com>
wrote:
>On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmail.comwrote:
>>Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
What have you learnt till now??

General speaking£¬I have learnt c++ basic. I have read Thinking in C+
+,Effect C++,More Effect C++ and others
What about these books:

Design Pattern
Refactoring
Working Effectively with Legacy Code

And the articles at objectmentor.com and netobjectives.com?

You read all them? You put them into practice?
Dec 10 '07 #4
On Mon, 10 Dec 2007 05:40:43 -0800 (PST) in comp.lang.c++, dolphin
<jd*******@gmail.comwrote,
>Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
Read "Modern C++ Design" By Andrei Alexandrescu
Dec 10 '07 #5
dolphin wrote:
On 12TB10HU, OBNg10J1027V, "vimase...@gmail.com" <vimase...@gmail.com>
wrote:
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmail.comwrote:
Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
What have you learnt till now??

General speaking#,I have learnt c++ basic. I have read Thinking in C+
+,Effect C++,More Effect C++ and others


That's what you've read. What have you WRITTEN? What programs have you
successfully created beyond what are used as problems in the books (you
have been working the problems, right?)?


Brian
Dec 10 '07 #6
On 10 Dec, 14:40, dolphin <jdxyw2...@gmail.comwrote:
Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
Try these books:

Modern C++ by Alexander Alexandrescu
Template Metaprogramming by Alex Gurtovoy and David Abrahams

Those books will teach you things you probably couldn't even imagine.

--
Daniel
Dec 10 '07 #7
On 12ÔÂ11ÈÕ, ÉÏÎç12ʱ42·Ö, Noah Roberts <u...@example.netwrote:
dolphin wrote:
On 12ÔÂ10ÈÕ, ÏÂÎç10ʱ02·Ö, "vimase...@gmail.com"<vimase...@gmail.com>
wrote:
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmail.comwrote:
>Hi All.
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
What have you learnt till now??
General speaking£¬I have learnt c++ basic. I have read Thinking in C+
+,Effect C++,More Effect C++ and others

What about these books:

Design Pattern
Refactoring
Working Effectively with Legacy Code

And the articles at objectmentor.com and netobjectives.com?

You read all them? You put them into practice?
Yes you are right. I learn something about Design Pattern. I also do
something in practice. I finished some small project.
These book that you mentioned I will read later. Could someone point
some topics. I want to focus on some topics.
Thanks a lot!
Dec 11 '07 #8
On Dec 10, 8:46 pm, dolphin <jdxyw2...@gmail.comwrote:
On 12ÔÂ11ÈÕ, ÉÏÎç12ʱ42·Ö, Noah Roberts <u...@example.netwrote:
dolphin wrote:
On 12ÔÂ10ÈÕ, ÏÂÎç10ʱ02·Ö, "vimase...@gmail.com" <vimase...@gmail.com>
wrote:
>On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmail.comwrote:
>>Hi All.
>> I have learn the C++ for sometime. Now I want to learn some
>>advance topics. Can someone recommend some advance topic?
>What have you learnt till now??
General speaking£¬I have learnt c++ basic. I have read Thinking inC+
+,Effect C++,More Effect C++ and others
What about these books:
Design Pattern
Refactoring
Working Effectively with Legacy Code
And the articles at objectmentor.com and netobjectives.com?
You read all them? You put them into practice?

Yes you are right. I learn something about Design Pattern. I also do
something in practice. I finished some small project.
These book that you mentioned I will read later. Could someone point
some topics. I want to focus on some topics.
Thanks a lot!

If you want to enter the wonderful weirdness of the template world,
search for "expression templates" and "template meta-programming".
Such libraries as blitz++, tvmet, Boost.MPL use these techniques.
Basically those topics are about using the type system to evaluate
expressions at compile-time.

For expression templates this site is a good start:
http://ubiety.uwaterloo.ca/~tveldhui.../exprtmpl.html

From these topics you can move on to lambda expressions (a term from
functional programming) which is basically a shorthand syntax for
writing in-line functions (something like, std::transform(v1.begin(),
v1.end(), v2.begin(), out.begin(), _3 = _1 + _2);)

Chris

Dec 13 '07 #9
dolphin wrote:
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?
You don't learn a programming language only by reading books but by
programming. Write some interesting software that you want to have.
Start small first.
Dec 13 '07 #10
On 12ÔÂ13ÈÕ, ÏÂÎç9ʱ28·Ö, Matthias Buelow <m...@incubus.dewrote:
dolphin wrote:
I have learn the C++ for sometime. Now I want to learn some
advance topics. Can someone recommend some advance topic?

You don't learn a programming language only by reading books but by
programming. Write some interesting software that you want to have.
Start small first.
Yes,you are right. I have also write some small programm.
Dec 14 '07 #11

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

Similar topics

10
2309
by: Dirk Vanhaute | last post by:
I have only small knowledge of c++, but I would like to compile the example in http://support.microsoft.com/kb/q246772/ HOWTO: Retrieve and Set the Default Printer in Windows I included "#include...
2
1768
by: Gil | last post by:
I was looking for a good advanced programming course covering Object Oriented Programming and C++ in Germany. Can anyone recommend a good course? Thank you, Gil
1
1897
by: Lee | last post by:
I want to develop a finite element analysis program, i know there are many free frames, any suggestion? Under windows environmention
12
1606
by: Mars | last post by:
I searched and found quite many, but (nearly) all are about C++....... Any recommendation for such reference for pure C???? Thx~~~~ Mars.
4
2335
by: Rukmal Fernando | last post by:
Hi, I've been looking for a good Trace message monitoring tool to monitor trace messages (through System.Diagnostics.Trace.WriteLine() etc). I need it to collect traces from non-EXE code (esp....
66
3046
by: QuantumG | last post by:
Decompilation is the process of recovering human readable source code from a program executable. Many decompilers exist for Java and .NET as the program executables (class files) maintain much of...
2
1798
by: HendrikLeder | last post by:
Hello everybody :-) Next year I`ll write my diploma in computer science for business (It`s a degree in Germany) and I`ve some questions about the topic. The diploma will handle about refactoring...
6
2456
by: Solo.Wolve | last post by:
I've just finished the K&R c, And begin to study c++ myself,so can anyone give me some advice?such as some books to read,and something to notice? Thank you very much.
2
3312
by: itdevries | last post by:
Hi, I've been looking for a basic c++ 2D plot library to use with windows (and visual studio). I was a bit overwhelmed by all the options I found. Can someone here recommend a basic 2D plot...
0
7099
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
7175
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...
1
6842
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...
1
4864
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...
0
3069
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...
0
3070
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1378
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 ...
1
598
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
262
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.