The pass-by-const-reference tag has no wiki summary.
1
vote
2answers
54 views
C++ pass-by-non-const-reference method inside pass-by-const-reference method
I have this function pass_by_const(const std::string& s) which wants to call pass_by_non_const(std::string& s).
If I have this method's definition
pass_by_const(const std::string& s)
{
...
1
vote
0answers
57 views
Linker errors passing an object by const-ref [closed]
Getting linker errors ever since I passed an object by const-ref. I am aware I will get compile errors if I call a non-const method in this situation, but the only function I am calling (i.e. my ...
12
votes
2answers
167 views
Can I let the C++ compiler decide whether to pass-by-value or pass-by-reference?
Have a look at this hypothetical header file:
template <class T>
class HungryHippo {
public:
void ingest(const T& object);
private:
...
}
Now, for a HungryHippo<string> it ...
0
votes
2answers
81 views
Transmit parameter by value or by reference in C++? [duplicate]
Possible Duplicate:
Pass by reference more expensive than pass by value
I want to know which is better, sending parameters by value or by reference in C++. I heard that there are cases ...
20
votes
4answers
755 views
c++ passing by const reference
In the following program body cosists of a vector of pointers. Points is a struct of x,y,z coordinates and a point_id. I believe as body is passed by const reference, the following step should produce ...
4
votes
2answers
1k views
const-ref when sending signals in Qt
These a thing that I never quite got with const-ref and I really hope that someone could explain it to me.
When calling a function inside of another function, I get that const-ref is the best way ...
0
votes
3answers
285 views
What's the “correct” way to pass an empty vector to an object?
I am working on a fairly large C++ project which unfortunately doesn't really use C++ to its full potential. Large portions of the code are still plain C wrapped in ridiculous C++ classes.
So I ...
3
votes
6answers
351 views
Ampersand & with const in constructor
Can some body tell me the reason why we usually put const and & with some object which is passed in the constructor for example.
Book::Book(const Date &date);
The confusion that i have here ...
5
votes
4answers
215 views
how does std::string manages this trick?
i just wrote a function:
void doSomeStuffWithTheString(const std::string& value) {
...
std::string v = value;
std::cout << value.c_str();
...
}
but then i call this with
...