In the C++ programming language, the C++ Standard Library is a collection of classes and functions, which are written in the core language and part of the C++
8
votes
1answer
150 views
Why are the std::atomic_{char,schar,etc.} typedefs allowed to be typedefs to a base class of std::atomic<T>, and not to atomic<T> only?
C++11 [atomics.types.generic]p7:
There shall be named types corresponding to the integral specializations of atomic, as specified in Table 145, and a named type atomic_bool corresponding to the ...
1
vote
1answer
92 views
C++ Standard compliance in AVR-GCC
I'm learning to program my Arduino, but I have a pretty solid background in C++, which means that I was very disappointed to find that I couldn't use the C++ Standard Library. I've been looking around ...
-2
votes
2answers
73 views
What are the C++ standard libraries available for linux? [closed]
Beside:
http://gcc.gnu.org/libstdc++/
http://libcxx.llvm.org/ ( works for the most part but it's a WIP )
what other options do I have ?
EDIT: I'm excluding stdcxx from Apache because it's not ...
1
vote
0answers
2k views
How to Fix Visual Studio 2012 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string?
How to fix a Visual Studio 2012 error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string?
I've been compiling a solution containing one exe and several static ...
-11
votes
4answers
238 views
If macros should be avoided, how come the VC++ standard library is so full of it? [closed]
Yes there may be times where using a macro is the only way. However, the standard seems to use them for everything. Even simple function wrappers.
Even C++ 11 code includes macros. Most ...
1
vote
2answers
79 views
cannot resize c++ std::vector that's a member variable of a class
code (simplified version)
(part of) the class definition:
struct foo {
std::vector<int> data;
foo(int a=0):data(a+1,0) {}
void resize(int a) {
data.resize(a+1,0);
}
}
...
9
votes
2answers
1k views
Is there a use case for std::function that is not covered by function pointers, or is it just syntactic sugar? [duplicate]
The notation for std::function is quite nice when compared to function pointers. However, other than that, I can't find a use case where it couldn't be replaced by pointers. So is it just syntactic ...
0
votes
3answers
75 views
Getline from the string (not from stringstream)
Let's say I have a std::string "55|6999|dkfdfd|". It cointains 3 parts (each is followed by |). Currently I put the string to stringstream and I use getline to recover them. However I wonder if there ...
-4
votes
2answers
96 views
C++ Multithreading Issue [closed]
I have following algorithm to work with a file:
//open ifstram to read each line
//open ofstream to output each line
while (getline(ifstream, line1)){
getline(ifstream, line2) ;
...
1
vote
2answers
149 views
Does std::vector::insert() invalidate iterators if the vector has enough room (created through reserve)?
Answering How to self-copy a vector? has got me a bit confused about iterator invalidation. Some literature says "if you use insert, push_back, etc. consider all iterators invalid". Thats clear, it ...
4
votes
1answer
172 views
Why does std::count return a signed integer? [duplicate]
I was really surprised to see that std::count returned a iterator_traits<InputIterator>::difference_type, which in turns refers to a long int on my platform.
Why is that? A negative count ...
6
votes
3answers
165 views
Can Boost be used as a full replacement of the C++ Standard library? [closed]
Say I have minimal headers like <new>, <initializer_list>, and maybe some other stuff, is it possible to use Boost to function as a std C++ library, or is there a lot of code missing?
I'm ...
0
votes
2answers
300 views
Link errors compiling a mixed objective-C/C++ project with C++11 support in xcode 4.5.2
I am trying to compile a workspace of 3 projects with C++11 support. This set of projects has successfully compiled and linked using LLVM compiler defaults. In addition, the c++ code has previously ...
2
votes
2answers
176 views
C++ Primer (5th edition) beginner's quandary [duplicate]
Possible Duplicate:
GCC linker can’t find standard library?
I am trying to mess with this C++ book I got for the holidays, I am coming from a limited understanding of python so this stuff ...
0
votes
1answer
158 views
why do we need to tie cin and cout?
By default, the standard input device is tied together with the standard output device in the form:
std::cin.tie (&std::cout); which guarantees that the output buffer has been flushed before input ...
2
votes
4answers
183 views
Insert elements into std::map without extra copying
Consider this program:
#include <map>
#include <string>
#define log magic_log_function // Please don't mind this.
//
// ADVENTURES OF PROGO THE C++ PROGRAM
//
class element;
typedef ...
1
vote
2answers
79 views
Abstract iterator for underlying collections
So basically what i want to do is to have a pure virtual method returning an iterator to an arbitrary collection of a concrete type, e.g in pseudo code:
virtual Iterator<T> getIterator() const ...
0
votes
0answers
53 views
std exp of (complex<double> * double ) doesn't work
double s=10.0;
complex<double> ii = (0.0,1.0);
cout << ii*s << " " << exp(ii*s) <<"\n";
gives
(10,0) (22026.5,0)
but the second number should be less than ...
7
votes
1answer
121 views
Decoupled version of hash_map/unordered_map
I'm writing an embedded application, and the environment I use does not, unfortunately, have C++11 support at present.
I need to implement a hash/unordered map (a regular std::map won't do for ...
9
votes
2answers
206 views
Does std::atomic::operator++ really return by value?
According to this prefix std::atomic<T>::operator++ returns a T, so this code only increments v once:
template<class T> void addTwo(std::atomic<T>& v) {
++(++v);
}
Also, ...
0
votes
2answers
128 views
What are the alternatives to the standard C++ library and boost with a clear implementation? [closed]
I don't have particular problems with the standard library, the only real issue is that the C++ library is used interfacing the code with a bunch of headers and the real implementation heavily depends ...
0
votes
3answers
262 views
keys not unique in c++ map
I have a std::map in my program which stores pairs of values. I want the keys in the map to be unique - which is the expected behavior of a std::map class. But when I insert the pairs into it, some ...
0
votes
1answer
148 views
Reversing words of a string inplace using STL
This question has been done to death in SO:. Here is my version using STL functions of the tradition algorithm of reversing the string and then reversing the words. is there a more elegant soln ...
8
votes
2answers
161 views
How is the storage associated with std::future allocated?
One way to get a std::future is through std::async:
int foo()
{
return 42;
}
...
std::future<int> x = std::async(foo);
In this example, how is the storage for x's asynchronous state ...
1
vote
1answer
221 views
Inconsistent namespace injection for C library facilities headers
I was playing with ptrdiff_t and reading the C++11 standard when I came across this "issue". First, the facts:
The type ptrdiff_t (just an example) is pulled from the Standard C library header ...
4
votes
3answers
367 views
Setting a std::function variable to refer to the std::sin function
I've got a question about how to properly use the new C++11 std::function variable. I've seen several examples from searching the Internet, but they don't seem to cover the usage case I'm considering. ...
2
votes
2answers
250 views
nextafter vs nexttoward functions in C++ 2011?
What is the difference between the nextafter and the nexttoward functions of the C++ 2011 standard library ?
2
votes
4answers
107 views
c++ operator() behavior
Consider, I'm use std::for_each and object with overloaded operator() to accumulate some data about vector content:
#include <iostream>
#include <vector>
#include <algorithm>
...
3
votes
2answers
121 views
Why do unordered_set operations like count and erase return a size_type?
Apparently, unordered_set::erase and unordered_set::count return something that is not strictly boolean (logically, that is, I'm not talking about the actual type).
The linked page reads for the ...
-5
votes
3answers
349 views
Splitting strings C++ [duplicate]
Possible Duplicate:
Splitting a string in C++
I have a program that copies files.
I have a string which is a directory path, however it could be just a file name. For example:
...
0
votes
2answers
1k views
C++: string operator overload
Can I overload existing function/operator in existing class?
I was trying to do:
#include <iostream>
#include <string>
using namespace std;
string& string::operator<<(const ...
5
votes
5answers
180 views
Why isn't there a common base for the standard library containers?
Just out of interest...
If I were to design a library of containers, I would surely derive them from a common base class, which would have (maybe abstract) declarations of methods like size() and ...
7
votes
2answers
310 views
Is there any std::chrono thread safety guaranty even with multicore context?
First, I'm assuming that calling any function of std::chrono is guaranteed to be thread-safe (no undefined behaviour or race conditions or anything dangerous if called from different threads). Am I ...
4
votes
1answer
117 views
What is wrong with my SFINAE to check for std::map/std::vector?
I have a simple SFINAE scenario to distinuish standard containers like std::map:
template <typename Container> struct HasKeyType : sfinae_test { // (C)
template <typename U> static ...
2
votes
1answer
120 views
Strange performance issues reading from stdout
I'm working on some code that will be used to test other executables. For convenience I'll refer to my code as the tester and the code being tested as the client. The tester will spawn the client and ...
2
votes
3answers
300 views
Assign a nullptr to a std::string is safe?
I was working on a little project and came to a situation where the following happened:
std::string myString;
#GetValue() returns a char*
myString = myObject.GetValue();
My question is if ...
5
votes
1answer
728 views
MacPorts Clang 3.1 missing Standard Library install?
I am trying out initializing lists feature in C++11 using clang installed by MacPorts. When compiling this simple code:
#include <vector>
int main()
{
std::vector<int> a {1, 3, 5};
...
3
votes
1answer
2k views
Clang 3.1 + libc++ Compile Error
I've built and installed (under the prefix ~/alt) LLVM-Clang trunk (23 apr 2012) successfully using GCC-4.6 on Ubuntu 12.04 and in turn libc++ using this Clang-build. When I want to use it I have to ...
1
vote
0answers
147 views
Microsoft's <regex> level of Unicode support?
What's the std::wregex Unicode support look like for Microsoft Visual C++ 2010?
Does it support Unicode character classes? [:Nd:] and such.
Support of collations such as digraphs? [.ae.] and such.
...
2
votes
4answers
669 views
How to compare c++ std::map with custom comparison function for associated data?
std::map<String, double> m1,m2;
m1["A"] = 20;
m2["A"] = 20.01;
if (m1 == m2)
cout << "True";
else
cout << "False";
The sample code prints False because 20 is not equal to ...
4
votes
3answers
670 views
Why are standard library function names different between Windows and Linux?
I am porting a Windows library to Android (with the GNU Standard C++ Library option, libstdc++-v3) and there seem to be numerous naming differences between the VC and GNU libraries, e.g.:
_stricmp ...
1
vote
3answers
56 views
More public member functions than those strictly required by the C++ standard
I see a public std::istream_iterator::_M_equal member function in my C++ implementation (it is used to compare istream iterators by other standard global functions). The standard does not require that ...
0
votes
2answers
125 views
Visual C++ Standard Library keywords
I wanted to write a unicode version of std::exception and std::runtime_error.
So I thought what better way then to just take implementations from the C++ Standard Library and alter them to support ...
5
votes
4answers
627 views
C++ UNICODE and STL
The Windows API seems big on UNICODE, you make a new project in Visual C++ and it sets it to UNICODE by default.
And me trying to be a good Windows programmer, I want to use UNICODE.
The problem is ...
12
votes
1answer
706 views
Visual C++ 10.0 bug in std::reference_wrapper?
Code:
#include <functional>
struct Foo
{
virtual void mf() = 0;
};
struct Bar: Foo
{
virtual void mf() {}
};
int main()
{
Bar o;
std::reference_wrapper<Foo const> ...
7
votes
1answer
217 views
Haskell FFI: How do you wrap C++ collections?
I have a function that returns vector<MyClass>; what's the best way to change this into something FFI-appropriate?
I'm thinking a type like :: [CIntPointer] might be a nice compromise, if ...
0
votes
4answers
364 views
Compiler shouts The text “>” is unexpected C++ XLC
I have declared a function in my headerfile.
I have no clue why but the compiler moans about this line and says "The Text ">" is unexpected.
I'm using AIX 5.3 and a XLC/VAC Compiler. Maybe ...
6
votes
3answers
247 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 ...
0
votes
3answers
3k 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 ...
8
votes
1answer
475 views
What's the difference between input iterators and read-only forward iterators?
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. And, because of that, ...
