473,387 Members | 3,821 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

all in one c++ reference

i am a java programmer and it seems i have been spoiled by the
documentation and the precompiled API freely availible on the web. is
there anything compareble to that with c++? i cannot find any official
c++ website such as java.sun.com. any help would be appreciated.
Jul 19 '05 #1
4 1505
On Sat, 06 Sep 2003 01:11:19 -0700, mtfulmer wrote:
i am a java programmer and it seems i have been spoiled by the
documentation and the precompiled API freely availible on the web. is
there anything compareble to that with c++? i cannot find any official
c++ website such as java.sun.com. any help would be appreciated.


The Standard Library is documented at www.dinkumware.com. You should refer
to your library vendor for documentation of non-standard libraries. For MS
stuff, MSDN is quite good.

Josh
Jul 19 '05 #2
Josh Sebastian wrote:
On Sat, 06 Sep 2003 01:11:19 -0700, mtfulmer wrote:

i am a java programmer and it seems i have been spoiled by the
documentation and the precompiled API freely availible on the web. is
there anything compareble to that with c++? i cannot find any official
c++ website such as java.sun.com. any help would be appreciated.

The Standard Library is documented at www.dinkumware.com. You should refer
to your library vendor for documentation of non-standard libraries. For MS
stuff, MSDN is quite good.

Josh


dinkumware costs money or badgers you about buying it. Try
http://www.litho.ucalgary.ca/opt/SPRO/stdlib/index.html

Really, just search for "Standard C++ Library 2.0 Documentation".

NR

Jul 19 '05 #3

Noah Roberts <nr******@dontemailme.com> wrote in message
news:3F************@dontemailme.com...
Josh Sebastian wrote:
On Sat, 06 Sep 2003 01:11:19 -0700, mtfulmer wrote:

i am a java programmer and it seems i have been spoiled by the
documentation and the precompiled API freely availible on the web. is
there anything compareble to that with c++? i cannot find any official
c++ website such as java.sun.com. any help would be appreciated.

The Standard Library is documented at www.dinkumware.com. You should refer to your library vendor for documentation of non-standard libraries. For MS stuff, MSDN is quite good.

Josh


dinkumware costs money


They allow online browsing of their documentation for free.
or badgers you about buying it.


They also let you know you can purchase a copy for download.
They're a business, for goodness' sake! Why would informing
folks about their products available for sale be 'badgering'?
You get to read the docs for free, they get to tell you about
their stuff. Seems perfectly reasonable to me.

-Mike

Jul 19 '05 #4
Mike Wahler wrote:
Noah Roberts <nr******@dontemailme.com> wrote in message
news:3F************@dontemailme.com...

dinkumware costs money

They allow online browsing of their documentation for free.


I never said they didn't. Though they are not as free as the
alternative I provided since they waste your time badgering you to buy
the product. In actuality they are not providing this service for free,
they are providing it in order to try and sell you a product; there is a
difference.

or badgers you about buying it.

They also let you know you can purchase a copy for download.
They're a business, for goodness' sake!


What the dinkumware webside does is more that "letting you know". It
happens every other time you press a link.

Why would informing folks about their products available for sale be 'badgering'?
Because every other time you access a new page (new during that current
session) instead of going to the documentation you go to an
advertizement page. Being told that often, and in that manner
(intrusive), is badgering imho.
You get to read the docs for free, they get to tell you about
their stuff. Seems perfectly reasonable to me.


It is perfectly reasonable for them to tell you how to buy their stuff.
It is less perfectly reasonable, though still reasonable, to badger
you to buy their stuff as they allow you to read it. And since this is
an advertizing campaign and not a free service to the community it is
perfectly logical to expect they will pester you to buy a product.

It is also perfectly reasonable to look for a less annoying alternative,
which I found, and which I provided for the OP. All of these things are
reasonable, what I find unreasonable is your reaction to my post.

Of course there are other reasons to look for alternatives to the
dinkumware site. IMHO the site I provided is better documentation since
it is more easily understood and provides more than just 'standard
speak' documentation of the library. The dinkumware documentation can
be difficult to understand and doesn't include a user guide.

So there :P~
NR

Jul 19 '05 #5

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

Similar topics

2
by: RU | last post by:
Hi, I am working on a porting project to port C/C++ application from unixware C++, AT&T Standard components to g++ with STL on Linux. This application has been working properly on...
110
by: Mr A | last post by:
Hi! I've been thinking about passing parameteras using references instead of pointers in order to emphasize that the parameter must be an object. Exemple: void func(Objec& object); //object...
11
by: Doug | last post by:
Is there any harm in passing an object into a method with the 'ref' keyword if the object is already a reference variable? If not, is there any benefit?
13
by: Abe Frohnman | last post by:
Hello all, I'm passing a reference to a class into the constructor of a form, like so: public MyForm(int count, ref Area myArea) {...} How can I use myArea outside the constructor? Should I...
4
by: z_learning_tester | last post by:
I'm reading the MS press C# book and there seems to be a contradiction. Please tell me which one is correct, 1 or 2. Thanks! Jeff 1. First it gives the code below saying that it prints 0 then...
13
by: al.cpwn | last post by:
I get that these two are different int* get() { static int m; return &m; } int& get() {
51
by: Kuku | last post by:
What is the difference between a reference and a pointer?
27
by: David W | last post by:
I'm almost tearing my hair out. A colleague claimed that a null reference can exist, like this: void f( int& p ) { printf( "%d\n", p ); } int main (int argc, char *argv) {
41
by: Summercool | last post by:
Can we confirm the following? also someone said, Java also has "reference" like in C++, which is an "implicit pointer": Pointer and Reference --------------------- I am starting to see what...
275
by: Astley Le Jasper | last post by:
Sorry for the numpty question ... How do you find the reference name of an object? So if i have this bob = modulename.objectname() how do i find that the name is 'bob'
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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...
0
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...

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.