C++11 is the name of the C++ standard, approved in 2011. It replaces the previous C++03 standard, adding various core language changes and fixes, and an improved and expanded standard library.
0
votes
1answer
54 views
How to use int argc,char *argv[] outside of main function in c++?
I am having a problem when writing codes in c++. I used int argc,char *argv[] outside of the main function and it tells me they are not defined.
I have tried to use the extern but it doesn't help.
Can ...
4
votes
2answers
46 views
Initialize a Struct containing a const array with initializer list
I working with C++11 and have a Class containing the following Struct:
struct Settings{
const std::string name;
const std::string* A;
const size_t a;
};
class X {
static const ...
0
votes
1answer
7 views
How do I save the state of std::mersenne_twister_engine to restore it later?
I would like to save the state of a std::mersenne_twister_engine so that I can restore it back exactly at a later time. I know I can save the original seed and call discard to roll the engine forward ...
2
votes
2answers
41 views
Is relying on the type of a Windows handle being a pointer ok?
Windows handles are sometimes annoying to remember to clean up after (doing GDI with created pens and brushes is a great example). An RAII solution is great, but is it really that great making one ...
1
vote
1answer
61 views
Efficient way to remove elements from std vector according to predicate
I'm writing an algorithm which is supposed to remove from a set of points stored inside a vector every element which is inside any of a list of rect that I supply.
I'm using it also as a testing ...
-1
votes
1answer
28 views
c++11 map.at reject values from a enum
I was developing a class to warp objects from a libray and I found the following problema:
The library generates a series of values stored in a map; this map uses a enum type as key:
enum key_type {
...
0
votes
1answer
37 views
C/C++ compiling different parts of the program with different compilers
I'm writing a program in C++ that requires a call to a subroutine written in an open source C program. The C file is called shd.c. (There is no header file for shd in the program). The C program by ...
7
votes
1answer
109 views
Declaring member or not depending on template parameter
Is it possible to declare or not a member variable depending on template condition without using dummy empty type?
Example:
struct empty{};
struct real_type{};
template<bool condition>
struct ...
-9
votes
0answers
96 views
Emacs or Vim for C++ 11 development? [closed]
I can't find a good article on this, I can't even find something really convincing that can help me with the final decision.
I like to use the terminal because the keyboard it's faster than keyboard ...
1
vote
1answer
98 views
Variadic template overload resolution
Suppose I have a list of template parameters that can be incremented. I want to increment the head of this list. Here is the code
template<int N>
struct Counter {
static constexpr ...
0
votes
2answers
80 views
c++ what is the type of T[] in template specialization
I have a question about the implementation of std::remove_extent (visual studio 11)
template<class _Ty>
struct remove_extent
{
typedef _Ty type;
};
...
5
votes
2answers
205 views
Setter of a lambda function?
Consider the following dumb example :
class MyClass
{
public:
template <class Function>
inline double f(double x, Function&& function)
{
return ...
2
votes
1answer
53 views
Boost memory_order_consume Example
I was looking at a Boost example regarding atomic operations and the happens-before relationship, and I'm a bit confused.
In the "happens-before through release and consume" section, there is the ...
10
votes
2answers
281 views
Is empty struct defined by C++ standard?
Is there any std::empty struct or something similar or do I need to define my own:
struct empty{};
This can be used very nice in combination with std::conditional or other new std features and I ...
5
votes
3answers
98 views
decltype as a return type in class member function
I got error compiling below code.
struct B{
double operator()(){
return 1.0;
}
};
struct A {
auto func() -> decltype(b())
{
return b();
}
B b;
};
...
0
votes
0answers
51 views
variadic templated Object multiplication
In the below code I am doing multiplication variadic templates for the int values and also for the Objects. It works for the all primitive types. It also works for the only 2 objects. But the code ...
3
votes
1answer
89 views
Exception safety of std::function
I tried without success to find if this code could throw an exception :
std::function<void(void)>f=[]{};
According to the standard, the copy or move constructor of std::function are not ...
9
votes
5answers
236 views
Is there a safe way to use C++11 Smart Pointer and the Interface for Raw Pointer together?
I want to use C++11 Smart Pointers in new projects, and encounter a problem. Many current projects still use raw pointers as parameters in their interface and have no interface for smart pointers, ...
6
votes
3answers
167 views
Why locking a std::mutex don't block the thread
I wrote the following code to test my understanding of of std::mutex
int main() {
mutex m;
m.lock();
m.lock(); // expect to block the thread
}
And then I got a system_error: device or ...
3
votes
2answers
90 views
Unrestricted union in practice
I have some questions about unrestricted unions and their application in practice.
Let's suppose I have the following code :
struct MyStruct
{
MyStruct(const std::vector<int>& a) : ...
4
votes
1answer
109 views
What is this compiler error when using a lambda as a template parameter?
I've been struggling with a VS2012 compiler error message I don't understand, so I trimmed down the problem to what seems like the bare minimum.
I'm building the following main.cpp using VS2012:
...
1
vote
1answer
41 views
Getting a unique_ptr out of a priority queue
I am maintaining a set of unique_ptr instances in a priority_queue. At some point, I want to get the first element and remove it from the queue. However, this always produces a compiler error. See ...
0
votes
1answer
45 views
Compiling with clang with c++11 enabled fails
Having the following test.cpp:
#include <iostream>
int main() {
int a{};
std::cout << "TEST" << std::endl;
}
When build with the latest GCC (4.8.0) g++ test.cpp ...
2
votes
1answer
101 views
C++0x: uniform_real_distribution is not a member of std
I am trying to compile my first piece of code using c++0x. I am pretty good with C++, but this one has me stumped. The following will not compile:
#include <iostream>
#include <random>
...
2
votes
2answers
179 views
Laziness in C++11
Do you know how to perform a lazy evaluation of string, like in this D snippet:
void log(lazy string msg) {
static if (fooBarCondition)
writefln(…) /* something with msg */
}
Actually, the ...
0
votes
1answer
31 views
Problems when compiling a crypto library [duplicate]
I get an error when compiling a crypto library
crypto/ope.cpp: In member function ‘NTL::ZZ OPE::encrypt(const NTL::ZZ&, int)’:
crypto/ope.cpp:80: error: expected primary-expression before ‘[’ ...
-1
votes
2answers
69 views
Combining the values of two different sized vectors [closed]
I was just wondering if there's a more readable way of combining the values of two vectors?
#include <vector>
#include <iostream>
int main( int argc, char ** argv )
{
...
-6
votes
0answers
57 views
Which programming Book Language? C++ or C++11 [closed]
I had few quick question please, if someone can help, would be very grateful.
1) I need to learn visual C# and have seen some very cheap second hand deals online for visual C# 2010 books but would it ...
0
votes
1answer
31 views
How do I use an initializer list with a base class?
Given the following:
struct A
{
int foo;
int bar;
};
struct B : public A
{
int baz;
};
How would I construct a B with an initializer list that also constructs the elements in A? The ...
2
votes
4answers
186 views
The way to create a new pointer
I am trying to create a new pointer by using two ways, do they mean the same?
int* ptn;
int* ptn(nullptr);
0
votes
1answer
18 views
clang++ mac os x c++11 linker issue
I have a problem compiling a program with "-std=c++11 -stdlib=libc++" under mac os x 10.8.3 using clang++ from xcode 4.6.2.
When I try to use std::mem_fn() or (deprecated) std::mem_fun_ref(), I get ...
1
vote
1answer
60 views
C++11 Setter function parameter passing nullptr
I was wondering about C++11 best practices regarding parameter passing nullptr. I want to reset a class member object by passing a nullptr to an already existing setter function. For a simple ...
0
votes
4answers
90 views
Official C++/11 Makefile Standard/Alternatives?
I am currently using Visual Studio 2012, Eclipse, CodeBlocks, and MinGW to write C++ 11 code.
Question:
I have noticed features in GCC, (deferred, = vs. immediate, :=, expansions/assignments, etc), ...
8
votes
2answers
320 views
Why was the addition of trailing-return-types necessary in C++11?
I've finally started to read up on c++11 and I fail to understand why trailing-return-types are required.
I came across the following example, which is used to highlight the problem:
...
2
votes
3answers
139 views
move constructor: how to handle container attribute? [closed]
How to properly initialize container attribute avoiding reconstructing contained objects?
class BAR
{
...
};
class FOO
{
public:
FOO(FOO &&f)
{
// ????
}
...
-3
votes
0answers
111 views
If garbage collection gets introduced in c++ [closed]
we know that C++ Standards Committee is looking at adding Garbage collection(GC) in future.Currently we are relaying on RAII to handle freeing resources automatically.
In future if garbage collection ...
1
vote
1answer
44 views
Merge two variadic templates in one
Im trying to implement a variadic template wrapper of the loki typelist.
Merging two typelists in loki-style is easy, but im having problems with merge in variadic-template style.
This is my ...
3
votes
2answers
175 views
In C++, can I typedef an element type from pointer type? [duplicate]
The title says it, look at my minimal example:
template<class ptr_to_t>
void f(ptr_to_t x) {
typedef ptr_to_t t; // does not compile
t elem = *x;
}
int main()
{
int five = 5;
...
0
votes
1answer
23 views
How to catch exceptions which occur inside asynchronous methods? (Windows Store app, PPL)
I am trying to catch exception from OnlineIdAuthenticator::AuthenticateUserAsync method, which occurs when there is no internet connection for example.
I've found some info about this topic, but it ...
10
votes
2answers
245 views
Why must 'auto' declarations all be of the same type?
It appears that it is not allowed to declare multiple variables of distinct types using the auto keyword. I can't figure out the wording in the standard that would prevent it however.
auto i = 1, j = ...
1
vote
2answers
65 views
Decltype and templates - any way to make decltype machinery less complicated?
I was playing around with implementing group_by method in a generic way and I have maybe implemented it(except it doesnt work for C arrays), but still code looks ugly to me...
Is there easier way to ...
0
votes
0answers
52 views
Template Method Partial Specialization [duplicate]
I have this in the header.
template<unsigned int, typename T>
static void createSwitch(T container, Vector3 const& pos);
And this in the .cpp file.
template<typename T>
void ...
0
votes
1answer
37 views
Disabling clang C++11 warnings
I cannot for the life of me get clang to stop warning me about C++11 extensions. Anywhere I use "auto" or any other C++11 extension it spits out a warning.
I have the flag -Wno-c++11-extension but it ...
13
votes
1answer
180 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 ...
1
vote
2answers
96 views
constexpr class with array constructor methods
I am trying to write a compile time class for multivariate polynomials (i.e. like P(X,Y,Z) = X^2 + XYZ + YZ, don't worry too much about the mathematics here):
template<int DIM, int DEGREE> ...
-4
votes
0answers
83 views
How to store threads in vector [closed]
How does one store threads in a vector or in any data structure for that matter.
I looked at this question and I tried the following:
std::vector<std::thread> threads;
...
11
votes
2answers
210 views
Empirically determine value category of C++11 expression?
Each expression in C++11 has a value category. One of lvalue, xvalue or prvalue.
Is there a way to write a macro that, given any expression as an argument, will produce a string "lvalue", "xvalue" ...
3
votes
1answer
114 views
How do you convert a lvalue to an rvalue? And what happens to the `new` lvalue?
I would like to move an object into a std::vector using std::vector::push_back(). This would seem to be possible since there is a std::vector::push_back(value_type&& val) function. But due ...
1
vote
1answer
50 views
Uniform initialization with ternary operator return from function
I don't know if this is a compiler bug (gcc 4.8 on Arch Linux) or a problem with the standard, but the code below fails to compile. Why is getFoo1 allowed but not getFoo2?
struct Foo {
int _i;
...
12
votes
2answers
356 views
Does the C++ Standard allow the addition of two integers (fundamental type int) to throw a C++ exception?
Does the Standard allow this?
I don't think it does. Someone does. I need intelligent people to prove him wrong.




