473,609 Members | 1,943 Online
Bytes | Software Development & Data Engineering Community
+ 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 1694
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmai l.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...@gmai l.com" <vimase...@gmai l.com>
wrote:
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmai l.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...@gmai l.com" <vimase...@gmai l.com>
wrote:
>On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmai l.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.co m and netobjectives.c om?

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*******@gmai l.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...@gmai l.com" <vimase...@gmai l.com>
wrote:
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmai l.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...@gmai l.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.n etwrote:
dolphin wrote:
On 12ÔÂ10ÈÕ, ÏÂÎç10ʱ02·Ö, "vimase...@gmai l.com"<vimase.. .@gmail.com>
wrote:
On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmai l.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.co m and netobjectives.c om?

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...@gmai l.comwrote:
On 12ÔÂ11ÈÕ, ÉÏÎç12ʱ42·Ö, Noah Roberts <u...@example.n etwrote:
dolphin wrote:
On 12ÔÂ10ÈÕ, ÏÂÎç10ʱ02·Ö, "vimase...@gmai l.com" <vimase...@gmai l.com>
wrote:
>On Dec 10, 6:40 pm, dolphin <jdxyw2...@gmai l.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.co m and netobjectives.c om?
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

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

Similar topics

10
2329
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 <Windows.h>" at the start, and the following goes wrong : BOOL DPGetDefaultPrinter(LPTSTR pPrinterName, LPDWORD pdwBufferSize) { ....
2
1775
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
1903
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
1618
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
2340
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. WebParts). Can anyone recommend a good tool for my purpose? Many thanks in advance.
66
3084
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 the information found in the source code. This is not true for machine code executables however. In recent years decompilation for machine code has moved from the domain of crackpots and academic hopefuls to a number of real technologies that...
2
1810
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 of xml-schemes and a transformation of all instances (the xml-documents) with XSLT-scripts. The idea of the diploma is, that in nearly every company xml schemes are used. And (like Heraklit said "Panta rhei" - everthing is flowing) the business...
6
2467
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
3322
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 library? I just need to do very basic time series plots and maybe some very elementary diagrams (some lines by specifying x,y coordinates). kind regards, Igor
0
8145
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
8095
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
8556
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
8236
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,...
1
6068
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
5526
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
4103
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2541
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
0
1407
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 can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.