Tagged Questions

std is the name of the namespace containing the C++ Standard Library

learn more… | top users | synonyms

66
votes
15answers
18k views

Why is 'using namespace std;' considered a bad practice in C++?

Okay, sorry for the simplistic question, but this has been bugging me ever since I finished high school C++ last year. I've been told by others on numerous occasions that my teacher was wrong in ...
31
votes
6answers
44k views

How to find an item in a std::vector?

All I wanna do is to check whether an element exists in the vector or not, so I can deal with each case. if ( item_present ) do_this(); else do that();
22
votes
6answers
15k views

Can you remove elements from a std::list while iterating through it?

I've got code that looks like this: for (std::list<item*>::iterator i=items.begin();i!=items.end();i++) { bool isActive = (*i)->update(); //if (!isActive) // items.remove(*i); ...
17
votes
1answer
156 views

What can and can't I specialize in the std namespace?

Users are allowed to add explicit specializations to the std namespace. However, there are a few templates that I am explicitly forbidden from specializing. What templates can and can't I specialize? ...
16
votes
2answers
6k views

using BOOST_FOREACH with std::map

I'd like to iterate over a std::map using BOOST_FOREACH and edit the values. I can't quite get it. typedef std::pair<int, int> IdSizePair_t; std::map<int,int> mmap; mmap[1] = 1; ...
14
votes
5answers
587 views

Is there anything like “std::and” or “std::or”?

Given a container of boolean values (An example is std::vector<bool>), is there a standard function that returns true if all the values are true ("and") or true if at least one value is true ...
12
votes
6answers
19k views

Does std::vector.clear() do delete (free memory) on each element?

Consider this code: #include <vector> void Example() { std::vector<TCHAR*> list; TCHAR* pLine = new TCHAR[20]; list.push_back(pLine); list.clear(); // is delete called ...
11
votes
3answers
284 views

How does std::endl not use any brackets if it is a function?

The question is pretty much in the title. According to C++ Reference, std::endl is actually a function. Looking at its declaration in <iostream>, this can be verified. However, when you use ...
9
votes
2answers
282 views

Why is there no std::stou?

C++11 added some new string conversion functions: http://en.cppreference.com/w/cpp/string/basic_string/stoul It includes stoi (string to int), stol (string to long), stoll (string to long long), ...
9
votes
2answers
87 views

Pass std algos predicates by reference in C++

I am trying to remove elements from a std::list and keep some stats of deleted elements. In order to do so, I use the remove_if function from the list, and I have a predicate. I would like to use ...
9
votes
3answers
326 views

Crash when running application due to existence of unexecuted code in source file - c++

I'm working on a pretty tricky problem that I've been on for literally a week now. I've hit a very hard wall and my forehead hurts from banging it so I'm hoping someone can help me out. I am using ...
9
votes
6answers
6k views

Is the C++ STL std::set thread-safe?

I've a question about the thread safety of std::set. As far as I know I can iterate over a set and add/erase members and that doesn't invalidate the iterators. But consider following scenario: ...
8
votes
2answers
399 views

Whats going on here with cctype?

To my surprise the following code compiles: #include <iostream> #include <string> #include <algorithm> #include <iterator> #include <cctype> int main() { std::string ...
8
votes
1answer
279 views

overload vs default parameters in c++ standard

I was reading another question, and it got me thinking. Often the standard specifies functions which have default parameters in their descriptions. Does the standard allow writing these as overloads ...
8
votes
4answers
3k views

std::thread error (thread not member of std)

I compiled & installed gcc4.4 using macports. When I try to compile using -> g++ -g -Wall -ansi -pthread -std=c++0x main.cpp...: #include <thread> ... std::thread t(handle); ...
8
votes
8answers
5k views

std::string formating like sprintf

I have to format std::string with sprintf and send it into file stream. How can I do this?
8
votes
7answers
3k views

A std::map that keep track of the order of insertion?

I currently have a std::map<std::string,int> that stores an integer value to an unique string identifier, and I do look up with the string. It does mostly what I want, except for that it does ...
8
votes
6answers
1k views

Is there a standard C++ function object for taking apart a std::pair?

Does anyone know if there's a de-facto standard (i.e., TR1 or Boost) C++ function object for accessing the elements of a std::pair? Twice in the past 24 hours I've wished I had something like the ...
7
votes
4answers
127 views

Does clearing a vector affect its capacity?

I instantiate an std::vector foo(1000). foo.size() is now 1000 and foo.capacity() is also 1000. If I clear the vector with foo.clear(), the size() is now 0, but what is the capacity()? Does the ...
7
votes
1answer
234 views

std::for_each ignoring default function argument

I stumbled on a strange compilation problem. I want to process a list of strings, using std::for_each. The following simplified code illustrates the problem : # include <list> # include ...
7
votes
4answers
267 views

C++ - Implementing my own stream

Hello! My problem can be described the following way: I have some data which actually is an array and could be represented as char* data with some size I also have some legacy code (function) that ...
7
votes
4answers
1k views

Is there a difference between std::map<int, int> and std::map<const int, int>?

From what I understand, the key in a value pair in an std::map cannot be changed once inserted. Does this mean that creating a map with the key template argument as const has no effect? ...
6
votes
1answer
57 views

change element by iterator

i have problem when i want to change element of set by using iterator. This simple code may explain what i want to do. set<int> s; s.insert(12); set<int>::iterator it = s.begin(); ...
6
votes
6answers
152 views

C++ Standard Library approach to removing one of a pair of items in a list that satisfy a criterion

Imagine you have an std::list with a set of values in it. For demonstration's sake, we'll say it's just std::list<int>, but in my case they're actually 2D points. Anyway, I want to remove one of ...
6
votes
1answer
217 views

boost::regex vs std::regex - can't find empty() method?

Replacing boost::regex with std::regex since we are using gcc 4.6 in the company I ran into an issue with empty () method of that class - it basically didn't make it from boost::regex into std::regex ...
6
votes
6answers
122 views

Removing an element from a list with only its iterator

Is it possible to remove an element from an std::list if you have only the iterator that points to the element you want to remove? I have a large amount of functions that take iterators to list ...
6
votes
2answers
76 views

Do custom container iterators guarantee ADL to consider namespace std?

I have no intention of using this in real code. I promise. I'm just pathologically curious. Does the standard guarantee that std namespace is going to be found when a function argument is of type ...
6
votes
3answers
95 views

C++ default allocator - what should happen if the size doesn't equal the size passed to the invocation of allocate?

20.6.9: void deallocate(pointer p, size_type n); Requires: p shall be a pointer value obtained from allocate(). n shall equal the value passed as the first argument to the invocation of allocate ...
6
votes
1answer
144 views

Why is there no <stlfwd> header and can the non-existance of it be considered a defect?

The standard library includes an <iosfwd> header, that (forward) declares all streams including any typedefs and defines the char_traits template, including the specializations. Sadly, there is ...
6
votes
5answers
247 views

Why is my string not being printed?

I have some code that, in its smallest complete form that exhibits the problem (being a good citizen when it comes to asking questions), basically boils down to the following: #include <string> ...
6
votes
2answers
175 views

std::sort behavior with ints that are equal

What is the behavior of std::sort when used with ints that are equal is it going to keep them in the same order or just do some unpredictable stuff?
6
votes
2answers
1k views

Default encoding for variant bstr to std::string conversion

I have a variant bstr that was pulled from MSXML DOM, so it is in UTF-16. I'm trying to figure out what default encoding occurs with this conversion: VARIANT vtNodeValue; ...
6
votes
6answers
3k views

How is std::string implemented?

I am curious to know how std::string is implemented and how does it differ from c string?If the standard does not specify any implementation then any implementation with explanation would be great ...
6
votes
8answers
11k views

const unsigned char * to std::string

sqlite3_column_text returns a const unsigned char*, how do I convert this to a std::string? I've tried std::string(), but I get an error. Code: temp_doc.uuid = ...
5
votes
1answer
53 views

state of std::vector after std::bad_alloc

I'm trying to find a online reference to see the exception safety of several std containers. In the case of std::vector, Does it keep the state previous to the push_back call? I would presume the ...
5
votes
3answers
120 views

Find first occurrence of a string from a vector<string>

I have a vector<string> vectorStrings with values: ta, bc, ac, st, cer, cda. I want to find the first occurrence of any of the strings in the vector in an input string. e.g. InputStr = "this ...
5
votes
5answers
115 views

iterate an STL container not from the .begin()ing and wrap around

I have an std::vector, let's say of integers for simplicity. std::vector<int> ivec; ivec.push_back(1); ivec.push_back(2); ... //omitting some push back's 3 to 99 ivec.push_back(100); The ...
5
votes
3answers
128 views

std::multimap getting two ranges

I'm using a C++ std::multimap and I have to loop over two different keys. Is there an efficient way to do this other than creating two ranges and looping over those ranges seperately? This is the ...
5
votes
5answers
233 views

Is returning a C++ std::string object safe from memory leaks?

I'm fairly novice with C++'s strings so the following pattern may be a little fugly. I'm reviewing some code I've written before beginning integration testing with a larger system. What I'd like to ...
5
votes
3answers
137 views

find an item in a list of pointers

I am trying to understand how to find an item in a list of pointers in C++, using std::find If I had for example: std::list<string> words; std::string word_to_be_found; I could just search ...
5
votes
3answers
306 views

Conversion from boost::shared_ptr to std::shared_ptr?

I got a library that internally uses Boost's version of shared_ptr and exposes only those. For my application, I'd like to use std::shared_ptr whenever possible though. Sadly, there is no direct ...
5
votes
3answers
156 views

Why is the string version of getline a non-member function?

The getline function has a character version that is a member function, as well as a global version that takes strings. Why aren't they both member functions? The current way makes it seems as though ...
5
votes
2answers
622 views

Does std::vector use the assignment operator of its value type to push_back elements?

If so, why? Why doesn't it use the copy constructor of the value type? I get the following error: /usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/bits/vector.tcc: In member functio n ...
5
votes
2answers
2k views

Why is stringstreams rdbuf() and str() giving me different output?

I have this code, int main() { std::string st; std::stringstream ss; ss<<"hej hej med dig"<<std::endl; std::getline(ss,st,' '); std::cout ...
5
votes
4answers
770 views

Is there a better way to reverse an array of bytes in memory?

typedef unsigned char Byte; ... void ReverseBytes( void *start, int size ) { Byte *buffer = (Byte *)(start); for( int i = 0; i < size / 2; i++ ) { std::swap( buffer[i], buffer[size ...
4
votes
1answer
92 views

libc++ - stop std renaming to std::__1?

After substantial effort getting clang and libc++ to compile, run, integrate with NetBeans, and even cross-compile to a 32-bit machine, I thought I had it all figured out! So I go to use some features ...
4
votes
4answers
205 views

multimap vs map with set

I'm wondering which is more efficient. std::map< String, std::set<int> > or std::multimap< String, int > EDIT: I do not plan on doing anything out of the ordinary with these ...
4
votes
4answers
154 views

std exceptions inviting unsafe usage?

It is recommended that you always throw something derived from std::exception and there are a few predefines specialisations such as std::runtime_error std::exception's interface is given in terms of ...
4
votes
3answers
135 views

Avoiding pointers in std::list

I try to avoid having pointers, and instead of doing std::list<std::pair<int,int>* > myList; void addElement(int a, int b) { myList.push_back(new std::pair<int,int>(a,b)); } I ...
4
votes
3answers
245 views

How to handle evolving c++ std:: namespace? e.g.: std::tr1::shared_ptr vs. std::shared_ptr vs. boost::shared_ptr vs. boost::tr1::shared_ptr

For the code I am currently working on, we sometimes need to compile on some older systems with older compilers (e.g.- we run sims on an older IBM BlueGene/L, who's support contract dictates some ...

1 2 3 4 5 8