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

learn more… | top users | synonyms (1)

13
votes
1answer
167 views

Can std::function be move-constructed from rvalue reference to a temporary functor object?

I have an untemplated functor object that I'm trying to store as a std::function inside another object. This object is really heavyweight, so it's marked as uncopyable, but it does have a move ...
0
votes
2answers
39 views

Copying from std container frm arbitrary source object

I created a read only iterator which allows me to use it in a for loop more conveniently then with the std iterators, similar to what boost does with the FOREACH (not as good but good enough :)) Now ...
0
votes
1answer
121 views

Choosing the best stucture for my list of players

I am in trouble choosing the most pertinent structure for my data, here are the explanations: I am actually working on a game project for school, a Bomberman like game in c++. I am designing the Map ...
0
votes
1answer
12 views

list container on stack and accessed in other function

I am confused about storing the list container allocated on stack, and accessing the stored list container in some other function. Please suggest if it's better to put everything on heap ? Putting ...
1
vote
0answers
43 views

Default valarray passing doesn't work

In C++, I have two functions: do_work(args, std::valarray<double> arr=std::valarray<double>(0.0, 1)) { very_complicated_things } wrapper(args, std::valarray<double> ...
2
votes
2answers
35 views

std::wstring not working with the [] operator of std::map<const wchar_t*, const char*>

I have a const std::map<const wchar_t*, const char*> which is in the global namespace. It looks like this: .h file typedef std::map<const wchar_t*, const char*> ShaderMap; const ...
1
vote
2answers
53 views

Why use namespace if iostream is imported

I am beginner at C++, and I have recently been introduced to namespaces like std. However, if functions like cout and endl are defined in the iostream header file, why include the std namespace at ...
0
votes
1answer
5 views

C++ SLT: how to insert in sorted order

I know that std::find() helps to find the iterator position of a given value. And std::insert() insert a given value into the container at a known position. However, is there any function I can call ...
8
votes
1answer
167 views

template enable if is pointer

I try to make a class to manage resources easily (ResourceManager). For that I use the template with C++11. Here's what I do: template<class K,class T> class ResourceManager { public: ...
0
votes
1answer
20 views

Boost Multiarray of std::vector

I'm new to Boost (and also to stackoverflow) and want to use a multiarray of vectors. I have done it that way: typedef boost::multi_array<std::vector<Vector3_t>, 2> array_type; ...
0
votes
4answers
83 views

std::sort that also keeps track of number of unique entries at each level

Say I have a std::vector. Say the vectors contain numbers. Let's take this std::vector 1,3,5,4,3,4,5,1,6,3 std::sort<std::less<int>> will sort this into 1,1,3,3,3,4,4,5,5,6, How would ...
0
votes
2answers
57 views

Find an element of vector which is presented in the map

I need to find an element of vector which is presented in map. Hard part is that vector consists of structures, so you should call member function to extract value form the structure first to compare ...
0
votes
2answers
95 views

'sqrt' is not a member of 'std'

I compile my program in linux - it has the following line : std::sqrt((double)num); On windows it is ok,but on linux I get 'sqrt' is not a member of 'std' I have an include for math.h what is a ...
0
votes
2answers
40 views

Wrong behaviour of set<Vec3b>

I have a set of Vec3b to hold posible RGB pixel values. std::set<cv::Vec3b> used_colors; But behaves weird: used_colors.insert(cv::Vec3b(100, 255, 255)); // this returns 1 although (100, ...
0
votes
1answer
31 views

How to expose std::pair to python using boost::python?

How to expose std::pair to python using boost::python? When I expose for example vector<string> I simply write: class_<std::vector<std::string> >("StringVec") ...
6
votes
1answer
98 views

Why do I have to clear std::stringstream here?

I wrote a short testprogram to see if I can append to a string using stringstream repeatedly. In the first version I got Output1 and I don't really understand why s1 stays empty. I found out that I ...
6
votes
2answers
150 views

Can I return an optional from a constexpr function?

Can I return an optional from a constexpr function? Why? If yes, how does it work? I'm interested in both boost::optional and std::optional. Do they behave the same?
0
votes
1answer
74 views

signaling parent threads in c++11

I have a function that I want to run in different threads. The function populates a data structure, for example: per_thread(int start_value, std::vector<SomeStruct>& reference) { for ( ...
1
vote
3answers
76 views

Hexadecimal in String to Hexadecimal in Integer

I want to know how to convert something like string x = "1f" to int y = 0x1f, every topic I found was solved by turning it to simply the integer value of it (31) or turning the string to a hexadecimal ...
0
votes
1answer
50 views

What happens when we try to erase non existent key from hash_set

What happens when we try to erase non existent key from hash_set class from SGI's STL? Does the call to hash_set::erase first try to find the key and then delete it?
3
votes
1answer
163 views

C++ function call with default argument in std::array?

Now I have a function in C++ void F( std::array<int,3> x ) { //... } I hope the argument 'x' could have a default value, how can I do this? If not a function argument, I can simply use ...
0
votes
1answer
31 views

Pointer to complex<double> sin

I try to compile this short example: #include<iostream> #include<math.h> #include<complex> typedef double (*d_sin)(double); typedef std::complex<double> ...
0
votes
0answers
31 views

error LNK2001 std::basic_string

When trying to build an SDL project, I'm constantly getting a linker error for: class std::basic_string<... int const I can get rid of these errors by getting rid of: using namespace std; But ...
-1
votes
0answers
76 views

vector< vector<bool> > resize() operation fails?

I'm stumped with this failure of some simple code. I wish to initialize a 2D matrix of bool values. The code for initialization looks like this: flag_matrix_t create_flag_matrix(size_t width, size_t ...
2
votes
1answer
119 views

Usage Issue of std::align

Consider the following code: #include <memory> #include <iostream> #include <cstdio> using namespace std; // Visual Studio 2012 don't have alignof as a keyword. #define ...
2
votes
1answer
49 views

Should I be using erase-remove idiom here?

I have an std::vector<IRenderable*> (_pBkBuffer in the code below). It contains a number of static objects (at the start of the vector) that don't change, followed by a variable number of ...
0
votes
0answers
51 views

std::vector of function pointers

I have a vector of function pointers. class GameState : public AppState{ private: void level1(); std::vector<void (*)()> levelFunctions; }; How do I push things into this vector? I ...
2
votes
1answer
58 views

How to output Polish characters in C++ console application? [duplicate]

I've try this simple code to output polish characters using 'std::wstring' class. The class is constructed succesfully from wchar_t array but I don't know how to output it to the screen. That line ...
3
votes
1answer
43 views

Sequential sequence containers OR How to pack vectors

Imagine I have two vectors: std::vector<int> A,B; //Push a bunch of data into A //Push a bunch of data into B For whatever reason, I want to create an interface to these vectors such as ...
3
votes
1answer
115 views

Slow iterating over string using pointers

I would love to see why one of the following solution is MUCH slower than the other. Lets concider following code: // create a very long string int x,y; bool b; char c[10000]; for ...
0
votes
2answers
47 views

I don't understand what's wrong with this VHDL code?

I have the following code: entity wave_select is port( address:in std_logic_vector(6 downto 0); ws1: in std_logic; ws0: in std_logic; wave_out: out std_logic_vector(6 downto 0)); end wave_select; ...
0
votes
2answers
34 views

Keeping std::map balanced when using an object as key

I am writing some code where I am storing lots of objects that I want to get back based on set criteria. So to me it made sense to use a map with an object as a key. Where the object would contain the ...
0
votes
0answers
52 views

Removing object from multiple std lists [closed]

Hi im hove problem with memory leak. In short code looks like this: class P1 { int a; //some functions P1(); virtual ~P1(); } class ...
2
votes
1answer
62 views

how to compare two std::set?

I do such compirison of two std::set #include <cstdlib> #include <cstdio> using namespace std; #include <vector> #include <set> int main(int argc, char** argv) { int ...
2
votes
3answers
74 views

std::map<string,int> default initialization of value

This piece of code seems work well, with default value for they value_type (int) as 0; does it work for all cases? std::map<std::string,int> w; for (const auto& t: str) w[t]++; What ...
1
vote
1answer
123 views

c++11 std array - differences between gcc and visual studio

I have a problem with this part of code: typedef std::array<u32, 3> my_array; void foo() { my_array a1{{1, 2, 3}}; a1 = {{1, 2, 3}}; // PROBLEM - does not work; my_array a2{{3, 2, ...
0
votes
1answer
36 views

Iterating through a std::map and adding it to a ListView [closed]

I'm learning C++ but I can't loop through my map to add items to my ListView. My Map: std::unordered_map<int, std::unordered_map<char*, char*>> mp; Here is my code to add to ListView ...
0
votes
2answers
37 views

Error while deleting a vector pointer to pointers

What do you think about this function? void deleteVector(vector<Persistent*> *v) { if (v) { for (int i = 0; i < v->size(); i++) delete v[i]; delete v; ...
2
votes
1answer
218 views

How to convert std::vector<unsigned char> to vector<char> without copying?

I weren't able to find that question, and it's an actual problem I'm facing. I have a file loading utility that returns std::vector<unsigned char> containing whole file contents. However, the ...
28
votes
4answers
1k views

Why can't you take the address of nullptr?

In the C++11 standard, I don't understand the reason why taking the address of nullptr is disallowed whereas one is allowed to take the address of their own std::nullptr_t instances. Aside from the ...
9
votes
4answers
9k views

Append an int to a std::string

Why is this code gives an Debug Assertion Fail? std::string query; int ClientID = 666; query = "select logged from login where id = "; query.append((char *)ClientID);
1
vote
1answer
1k views

Can't declare C++ vector in xcode ios project

I'm trying to use a vector in a C++ class with xcode but it's giving me errors. The file has the .mm extension that is required for C++ files. This is my code: class Synth{ private: int bpm; ...
0
votes
4answers
466 views

system () in stdio or stdlib?

I used the system("pause") with stdio.h and it worked without error. When I looked at the stdio functions, system() is in stdlib. How come it worked, and here is the code? #include <stdio.h> ...
4
votes
2answers
500 views

How to fill `std::vector<std::vector<T> >` with default values?

So I try this: std::vector< std::vector<int> > matrix(4); matrix[0][0] = 1; matrix[0][1] = 2; matrix[0][2] = 3; matrix[0][3] = 1; matrix[1][0] = 1; matrix[1][1] = 2; matrix[1][2] = 3; ...
12
votes
2answers
945 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 ...
7
votes
5answers
9k views

In C++ check if std::vector<string> contains a certain value [duplicate]

Is there any built in function which tells me that my vector contains a certain element or not e.g. std::vector<string> v; v.push_back("abc"); v.push_back("xyz"); if (v.contains("abc")) // I ...
4
votes
2answers
258 views

Is std::vector::size() allowed to require non-trivial computations? When would it make sense?

I'm reviewing a piece of code and see a class where an std::vector is stored as a member variable and the size of that std::vector is stored as a separate member variable. Both std::vector and its ...
4
votes
4answers
874 views

std::string and its automatic memory resizing

I'm pretty new to C++, but I know you can't just use memory willy nilly like the std::string class seems to let you do. For instance: std::string f = "asdf"; f += "fdsa"; How does the string class ...
237
votes
18answers
62k views

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

I've been told by others on numerous occasions that my teacher was wrong in saying that we should have using namespace std; in our programs, and that std::cout and std::cin are more proper. However, ...
53
votes
7answers
39k 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); ...

1 2 3 4 5 25