Tagged Questions
The const-reference tag has no wiki summary.
10
votes
1answer
345 views
Binding temporary to const reference in c'tor initializer list
Section 12.2.5 in C++03 says "A temporary bound to a reference member in a
constructor’s ctor-initializer (12.6.2) persists until the constructor exits"
So I tried following program
...
8
votes
2answers
159 views
Prevent temporary from extending its lifetime?
This may be impossible, but I was wondering if it was possible to keep a temporary from ever lasting past its original expression. I have a chain of objects which point to parent objects, and a member ...
8
votes
3answers
205 views
Why does this call by reference create a new instance?
Im calling a method foo by const ref:
// method, which is being called
void foo(const Entity & ent);
// call
Entity* e = new Entity;
foo(e); // wrong: missing * but compiles
This piece of ...
8
votes
4answers
3k views
Returning const reference to local variable from a function
I have some questions on returning a reference to a local variable from a function:
class A
{
public:
A(int xx):x(xx)
{
printf("A::A()\n");
}
};
const A& getA1()
{
A a(5);
return ...
7
votes
4answers
341 views
Reference initialization in C++
Can anybody explain to me why there is a difference between these two statements?
class A{};
const A& a = A(); // correct
A& b = A(); // wrong
It says
invalid ...
6
votes
4answers
472 views
java returning const reference of an arraylist
I really admire java features and I don't want to give up using it for the next problem:
I have a class that might be inherited, and inside of it is a private ArrayList arr; So the setter function is ...
6
votes
7answers
1k views
How to return a const QString reference in case of failure?
consider the following code:
const QString& MyClass::getID(int index) const
{
if (i < myArraySize && myArray[i]) {
return myArray[i]->id; // id is a QString
} else {
...
5
votes
1answer
71 views
Will temporary object be deleted if there is no const reference to it?
Lets take a look to this two functions:
std::string get_string()
{
std::string ret_value;
// Calculate ret_value ...
return ret_value;
}
void process_c_string(const char* s)
{
...
5
votes
3answers
132 views
Inline Function Arguments Passing
Is there a need performance-wise for inline functions to pass its arguments by const reference like
foo(const T & a, const T &b)
compared to by value
foo(T a, T b)
if I don't change the ...
5
votes
3answers
1k views
Does a const reference prolong the life of a temporary?
Why does this:
#include <string>
#include <iostream>
using namespace std;
class Sandbox
{
public:
Sandbox(const string& n) : member(n) {}
const string& member;
};
int ...
4
votes
2answers
71 views
What is the lifetime of the class data member which const reference to a rvalue?
Generally this discussion is up to the local function variable only:
void foo (const int &i)
{
// use i till foo() ends
}
foo(3);
But, does this rule applies to the class member also ?
...
4
votes
5answers
247 views
Adding class functionality via composition
Suppose we have an abstract class Element from which classes Triangle and Quadrilateral are derived from.
Suppose yet that these classes are used in conjunction with interpolation methods that ...
3
votes
5answers
138 views
C++: Is it better to pass an enum as a value or as a const reference?
There are sort of two related questions here:
A) How is enum implemented? For example, if I have the code:
enum myType
{
TYPE_1,
TYPE_2
};
What is actually happening? I know that you can ...
3
votes
2answers
256 views
Implicit conversion : const reference vs non-const reference vs non-reference
Consider this code,
struct A {};
struct B { B(const A&) {} };
void f(B)
{
cout << "f()"<<endl;
}
void g(A &a)
{
cout << "g()" <<endl;
f(a); //a is ...
3
votes
1answer
116 views
Is this valid C++ code according to standard?
I have this sample code:
struct A
{
bool test() const
{
return false;
}
};
template <typename T = A>
class Test
{
public:
Test(const T& t = T()) : t_(t){}
...
2
votes
3answers
233 views
Warning C4172: Returning a reference to const std::string bound to a local variable. How safe is it?
I was just building one of our projects at work and I see a new function was added:
const std::string& ClassName::MethodName() const
{
return "";
}
The compiler gives a warning:
Warning ...
2
votes
2answers
229 views
Function with parameter type that has a copy-constructor with non-const ref chosen?
Some time ago I was confused by the following behavior of some code when I wanted to write a is_callable<F, Args...> trait. Overload resolution won't call functions accepting arguments by ...
2
votes
2answers
193 views
Is it possible to change the temporary object and to pass it as an argument?
Is it possible to change the temporary object and to pass it as an argument?
struct Foo {
Foo& ref() { return *this; }
Foo& operator--() { /*do something*/; return *this; }
// ...
1
vote
2answers
69 views
C++ : const references and initialization order
I am wondering if I am using the good approach in the following :
I want to construct a parent class (class A), this class should own an instance of a given "Foo" class
I want the parent class to ...
1
vote
4answers
194 views
Why does this work? Returning const references in C++
I am fooling around with C++ and const references and am confused why this code works:
#include <iostream>
class A {
public:
A() : a_(50) {}
const int& getA() const { return a_; }
...
0
votes
1answer
183 views
const_reference or iterator for map (when not actually iterating)
I have some code that uses an iterator to loop through all elements of an unordered_map, but within that loop there are several other processes where I store iterators to particular elements in the ...