Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
3answers
409 views

Gnu C++ macro __cplusplus standard conform?

The Gnu C++ compiler seems to define __cplusplus to be 1 #include <iostream> int main() { std::cout << __cplusplus << std::endl; } This prints 1 with gcc in standard c++ mode, ...
10
votes
1answer
234 views

Will std::swap still be defined by including algorithm in C++0x?

The swap function template was moved from <algorithm> to <utility> in C++0x. Does the former include the latter in C++0x? Or do they both include a common header the defines swap? In ...
9
votes
2answers
773 views

How to get IOStream to perform better?

Most previously C-users prefer to use the printf / scanf family of functions even in C++. Although I admit that I find the interface way better (especially POSIX-like format and localization), it ...
8
votes
1answer
180 views

Can std::forward_list members be implemented as static?

std::forward_list provides insert_after and erase_after members which may not need to actually access the std::forward_list object. Therefore they can be implemented as static member functions and be ...
8
votes
5answers
327 views

C / C++ equivalents to the Python Standard Library

I depend heavily on Python's standard library, both for useful data structures and manipulators (e.g., collections and itertools) and for utilities (e.g., optparse, json, and logging), to skip the ...
7
votes
4answers
193 views

So where can I find the best online C++ Standard Library reference?

You know, with comments and examples and stuff. Need a quick reference for when coding.
6
votes
3answers
151 views

Must a C++ Standard Library be implemented in C++?

Must a conforming C++ Standard Library Implementation be implemented in C++? If not, is it allowed to do magic things that are not doable in pure C++ & Standard Library & some implementation ...
6
votes
1answer
98 views

What's the difference between input iterators and read-only forward iterators?

The title says it all: what's the difference between input iterators and read-only forward iterators? Because the latter are read-only, they obviously don't satisfy requirements of output iterators. ...
6
votes
2answers
107 views

Why does C++ see this as ambiguous function reference

Why might my compiler see the following GetLength function pointer as ambiguous pseudo-code: size_t GetLength(char*); size_t GetLength(wchar_t*); struct ITEM { }; double GetLength(ITEM*); CString ...
6
votes
2answers
240 views

Is there a list of c++11 standard library interfaces which require exceptions enabled?

From reading revision N3242 of the c++11 draft, it appears that some components of the standard library's interfaces (notably threading and locking) depend on exception handling. Since I do a lot of ...
6
votes
2answers
247 views

What's the deal with setw()?

I recently was bitten by the fact that ios_base::width and/or the setw manipulator have to be reset with every item written to the stream. That is, you must do this: while(whatever) { mystream ...
6
votes
3answers
231 views

Getting “Debug Assertion Failed!” for set comparator

I know similar issue has been answered at this link Help me fix this C++ std::set comparator but unfortunately I am facing exactly same issue and I am unable to understand the reason behind it thus ...
6
votes
6answers
3k views

What should I use instead of sscanf?

I have a problem that sscanf solves (extracting things from a string). I don't like sscanf though since it's not type-safe and is old and horrible. I want to be clever and use some more modern parts ...
4
votes
3answers
85 views

Why does the VS2008 std::string.erase() move its buffer?

I want to read a file line by line and capture one particular line of input. For maximum performance I could do this in a low level way by reading the entire file in and just iterating over its ...
4
votes
1answer
826 views

std::atomic | compare_exchange_weak vs. compare_exchange_strong

I'm still unsure if it's me don't understanding or the documentation isn't clearly formulated. The following excerpt has been taken from the newest draft (N3126, section 29.6): bool ...
4
votes
2answers
482 views

Qt: Qt classes vs. standard C++

A large amount of functionality is duplicated between standard c++ and Qt. At some point it seems logical but many times it looks foolish. Like I feel like doing a new programming language, learning ...
3
votes
2answers
128 views

std::vector constructor behavior

Take the following code: std::vector<std::vector<int>> v(10, 10); This code doesn't compile with libstdc++. It does compile with Visual Studio's C++ library, however. The behavior I ...
3
votes
3answers
158 views

c++: How to init members of std::pair in constructor

I have the following class: typedef std::pair<boost::asio::ip::tcp::socket, boost::asio::ip::tcp::socket> socket_pair; class ConnectionPair { private: socket_pair _sockPair; ...
3
votes
1answer
183 views

Idiomatic use of std::rel_ops

What is the preferred method of using std::rel_ops to add the full set of relational operators to a class? This documentation suggests a using namespace std::rel_ops, but this seems to be deeply ...
3
votes
5answers
203 views

Bad practice to declare names in the standard namespace?

I was looking through the Google C++ style guide, and came across this: "Do not declare anything in namespace std, not even forward declarations of standard library classes. Declaring entities in ...
3
votes
2answers
160 views

*iterator causes segfault

I'm trying to walk through a list. Here are some declarations: list<CG1_Edge*> ActiveEdges; list<CG1_Edge*>::iterator ActiveEdgeIterator; Sometimes, this code segfaults on line 2: for ...
3
votes
3answers
1k views

How can I use a std::valarray to store/manipulate a contiguous 2D array?

How can I use a std::valarray to store/manipulate a 2D array? I'd like to see an example of a 2D array with elements accessed by row/column indices. Something like this pseudo code: matrix(i,j) = 42; ...
3
votes
2answers
130 views

VC choosing the wrong operator<< overload only at the first call. Bug?

I spent some time removing all the uninfluent code and here is my problem. --- File.h --- #include <fstream> #include <string> template <typename Element> class DataOutput : ...
2
votes
4answers
101 views

Does the standard library have an ordered set?

Does the C++ standard library have an "ordered set" datastructure? By ordered set, I mean something that is exactly the same as the ordinary std::set but that remembers the order in which you added ...
2
votes
2answers
130 views

C++ Vector problem

I have for homework to write my own abstract class Vector. I make some of the code, but when I try to compile it I have error. This is the code: vector.hh: #ifndef VECTOR__HH__ #define VECTOR__HH_ ...
2
votes
3answers
215 views

unordered_map with forbidden collisions

I want to implement a performance-optimized variant of unordered_map that works in several phases: Initialization: Insert about 100 elements into std::map Preparation: Do some magic, converting ...
2
votes
4answers
547 views

Understanding the design of std::istream::read

std::istream has the prototype istream& read (char* s, streamsize n) the actual number of bytes read should be gotten by calling istream::gcount(), also the validity of the istream can be known ...
2
votes
3answers
256 views

which type of sorting is used in the function sort()?

Can anyone please tell me that which type of sorting technique (bubble, insertion, selection, quick, merge, count...) is implemented in the std::sort() function defined in the <algorithm> header ...
1
vote
4answers
104 views

How can one determine vector size at run time?

At run time, can one determine the size of a vector? For example input : 25 // which shows vector size code : int N ; cin << N ; vector <int> data[N];
1
vote
4answers
66 views

How to search and print specific parts in a String?

I am mainly looking for a standard function from the C++ library that will help me searching inside a string for a character then print out the rest of the string starting from that found character. I ...
1
vote
1answer
58 views

Parameter types in C++ standard library

I noticed some standard library functions use void* as their parameters, for example, the memcpy function, its prototype is : void * memcpy ( void * destination, const void * source, size_t num ); ...
1
vote
4answers
110 views

Forward declarations that involve std::vector, etc

I have used forward declarations a lot; they help avoid many #includes, improve compilation time and what not. But what if i want to forward-declare a class in the standard library? // Prototype of ...
1
vote
1answer
120 views

Is there a clean separating definition between “STL” and “C++ Standard Library”? [closed]

Possible Duplicate: What's this STL vs. “C++ Standard Library” fight all about? I am very much used to the term STL ("Standard Template Library") and I catch myself often ...
1
vote
5answers
139 views

c++ equivalent to python append method for lists

I'm learning c++ coming from a background in python. I'm wondering is there a way to append items to a list in c++? myList = [] for i in range(10): myList.append(i) Is there something like ...
1
vote
2answers
188 views

C++0x using <ratio> for a safer Length-type

When reading <ratio> and <chrono> I tried to imagine a Length-type that protects against accidental conversion errors. This is what I got: #include <iostream> #include ...
1
vote
3answers
819 views

Initializing a std::vector with default constructor

I have a class field which is a std::vector. I know how many elements I want this vector to contain: N. How do I initialize the vector with N elements?
1
vote
2answers
322 views

Lookin' for a container and memory pool solution

In an embedded program I have a screen object that needs to manage a list of items to display. The initial list of items will be pulled from a simple DB on screen load and the list will be updated via ...
0
votes
5answers
74 views

inserting objects onto ostreams

I want to put a text description of a class instance onto an ostream, as in ostream << myInstance; I know how to declare an ostream inserter; ostream& operator<<(ostream&, ...
0
votes
1answer
1k views

Error LNK2019: unresolved external symbol “class std::basic_string”

Environment: Windows XP. Visual Studios 2010. Language - C++. I have run into the following link error & have run out of ideas how to fix this problem. I have a project (CnD Device) which links ...
0
votes
1answer
221 views

Nested stl lists

I want to make an array of lists that contain a list. For example something like this list<list<int>> L[5]; Obviously this code doesn't work in all compilers. Which is the best way to ...
0
votes
2answers
622 views

Android Virtual Device(AVD) problem in Ubuntu 11.04

When i try to create a new Android Virtual Device(AVD) on Ubuntu 11.04, i get this error: "Error while loading shared libraries: libstdc++.so.6: cannot open shared object file: no such file or ...
0
votes
3answers
189 views

Mocking the C++ Standard Library

I'm unit testing a class in C++ and some of the public methods call private ones. I know convention is to test the public interface, but the classes' functionality depends on how these private ...
0
votes
1answer
45 views

About C++ Standard Library Implementation

I want to know how the C++ Standard Library functions are implemented. In particular, I'm very interested in iostream, stdexcept, fstream, numeric (accumulate, inner_product, etc.), CStdlib (atoi, ...
0
votes
1answer
51 views

What is wrong with c++ standard library? [closed]

Why the hell everybody need to reinvent string class (instead of using std:wstring) ? Or their own container and io cleasses ? I come from Java environment and Java has only one blessed String class ...
0
votes
2answers
558 views

C++ std::ifstream read to string delimiters

When using: string s; cin >> s; Which characters can string contain and which characters will stop the reading to string.
0
votes
2answers
268 views

Why does the standard C++ library use all lower case?

Just curious why the c++ standard library uses all lower case and underscores instead of camelCase or PascalCase naming convention. Personally, I find the latter much easier to deal with when typing ...
0
votes
3answers
286 views

c++ toupper - standard function? [closed]

Possible Duplicate: Convert a String In C++ To Upper Case Hi, I need a portable function to convert string in c++ to upper case. I'm now using toupper( char); function. Is it a standard ...
0
votes
5answers
190 views

Understanding the library functions in c++ [closed]

If I'd like to know how a function written in like standard C++ library work (not just the MSDN description). I mean how does it allocate, manage, deallocate memory and return you the result. where or ...
-1
votes
7answers
961 views

std::string.resize() and std::string.length()

I'm relatively new to C++ and I'm still getting to grips with the C++ Standard Library. To help transition from C, I want to format a std::string using printf-style formatters. I realise stringstream ...
-2
votes
3answers
80 views

GCC linker can't find standard library?

I've been developing a school project in XCode. The final product has to be submitted in source code with a makefile, so I wrote a makefile and to start compiling that way, to make sure I had a ...