Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old August 26th, 2007, 05:45 AM
bcjrstan@gmail.com
Guest
 
Posts: n/a
Default c++ help tool?

hi, guys
In linux,I can man 5 printf to get the c language printf using help,
in c++ I wonder whether have such a tool can get such
information ,such as cin using help ,and so on.
Any help is greatly appreciated! Thanks!

  #2  
Old August 26th, 2007, 04:25 PM
Victor Bazarov
Guest
 
Posts: n/a
Default Re: c++ help tool?

bcjrstan@gmail.com wrote:
Quote:
In linux,I can man 5 printf to get the c language printf using help,
in c++ I wonder whether have such a tool can get such
information ,such as cin using help ,and so on.
Every commercial compiler comes with a reference manual. Often, it
is electronic. You need to check your compiler packaging. If you
decided to get a free compiler off the net somewhere, you should
probably turn your sights to another form of the reference manual,
like a web-based one (msdn2.microsoft.com for Microsoft compilers,
for example).

That said, you won't get much help on _how to use_ 'cin' because
what you looking for is not in a reference manual. They would just
tell you that 'std::cin' is an object of type 'std::istream'. Now,
how do you use that? You'd need to look for 'std::istream' and all
related stuff. And then you'll be making guesses or looking at
their [often riddled with errors] "examples". It's just not a good
use of a reference manual.

Get yourself a copy of a decent C++ learning book, *like* the
"Accelerated C++" by Koenig and Moo. And *study*.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


 

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles