The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
116 views

C - Matrices as pass by value?

I'm designing matrix handling functions for a C project. I am considering either passing matrices by value or by reference. I created a benchmark passing matrices by value and by reference, and both ...
5
votes
2answers
84 views

Reference to element of vector returned by a function in C++

Can someone verify that the following is a BUG, and explain why? I think I know, but am unclear about the details. (My actual problem involved a vector of enums, not ints, but I don't think it should ...
4
votes
5answers
170 views

C++ deep copying with objects

Good morning. I am having trouble understanding the logic behind deep and shallow copying with objects in C++ in a shared project, so I have created the following example. int main() { ...
2
votes
1answer
65 views

Making a method return an object by value?

I have a dictionary such that: Dictionary<string, SomeClass> template Basically, what I want to do is get a copy of the object contained in template. However, I can't seem to create a method ...
0
votes
2answers
112 views

Java pass-by-value workaround for object properties

In one method of my Java source code, the same block of code occurs many times: <some code> <some code> <block of code> <some code> <block of code> <some code> ...
1
vote
1answer
73 views

Copy constructor strange behavior when returning-by-value

I tested the behavior of copy constructor with functions that return an object by value, and I came across a case where copy constructor does get invoked and a case it doesn't. Please consider the ...
5
votes
3answers
205 views

In c++11, is there ever still a need to pass in a reference to an object that will accept the output of a function?

Prior to C++11, if I had a function that operated on large objects, my instinct would be to write functions with this kind of prototype. void f(A &return_value, A const &parameter_value); ...
5
votes
4answers
175 views

How actually does a function return by value?

If I have a class A (which returns an object by value ), and two functions f() and g() having difference in just their return variables : class A { public: A () { cout<<"constructor, "; ...
2
votes
3answers
111 views

force const storing of returned by value value

This is what I'm trying to accomplish: struct test{}; const test returnconst(){ return test(); } test returnnonconst(){ return test(); } int main(){ test t1=returnnonconst(); ...
0
votes
1answer
131 views

How to output dynamic arrays values form container array in c++?

I will try to explain my situation a first. I have a class with structure inside of it and an array of this container calss class A { struct B { int I; B *next; }; B ...
3
votes
2answers
154 views

Why should return-by-value be const for non-builtin types but not const for builtin types?

Solutions 4 and 5 on GotW #6 Const-Correctness mention this: Point GetPoint( const int i ) { return points_[i]; } Return-by-value should normally be const for non-builtin return types .. ...