Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

241
votes
27answers
55k views

Is Java pass by reference?

I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone ...
34
votes
5answers
7k views

How to pass objects to functions in C++?

I am new to C++ programming, but I have experience in Java. I need guidance on how to pass objects to functions in C++. Do I need to pass pointers, references, or non-pointer and non-reference ...
30
votes
13answers
11k views

C++ - passing references to boost::shared_ptr

If I have a function that needs to work with a shared_ptr, wouldn't it be more efficient to pass it a reference to it (so to avoid copying the shared_ptr object)? What are the possible bad side ...
24
votes
2answers
550 views

Isn't “const” redundant when passing by value?

I was reading my C++ book (Deitel) when I came across a function to calculate the volume of a cube. The code is the following: double cube (const double side){ return side * side * side; } The ...
23
votes
7answers
2k views

What is the use of “ref” for Reference-type variables in C#?

I understand that if I pass a value-type (int, struct etc...) as a parameter (without the ref keyword), a copy of that variable is passed to the method, but if I use the ref keyword a reference to ...
22
votes
7answers
9k views

Is it better in C++ to pass by value or pass by constant reference?

Is it better in C++ to pass by value or pass by constant reference? I am wondering which is better practice. I realize that pass by constant reference should provide for better performance in the ...
20
votes
4answers
2k views

How do I pass the value (not the reference) of a JS variable to a function?

Here is a simplified version of something I'm trying to run: for (var i = 0; i < results.length; i++) { marker = results[i]; google.maps.event.addListener(marker, 'click', function() { ...
19
votes
9answers
10k views

pass by reference or pass by value?

When learning a new programming language, one of the possible roadblocks you might encounter is the question whether the language is, by default, pass-by-value or pass-by-reference So here is my ...
16
votes
10answers
12k views

PHP Variables passed by value or by reference?

Are PHP variables passed by value or by reference?
11
votes
1answer
526 views

Best form for constructors? Pass by value or reference?

I'm wondering the best form for my constructors. Here is some sample code: class Y { ... } class X { public: X(const Y& y) : m_y(y) {} // (a) X(Y y) : m_y(y) {} // (b) X(Y&& y) : ...
10
votes
6answers
3k views

Java is NEVER pass-by-reference, right?…right?

I found an unusual Java method today: private void addShortenedName(ArrayList<String> voiceSetList, String vsName) { if (null == vsName) vsName = ""; else vsName = ...
10
votes
7answers
4k views

Passing values in Python

When you pass a collection like list, array to another function in python, does it make a copy of it, or is it just a pointer?
9
votes
8answers
11k views

What's the difference between passing by reference vs. passing by value?

What is difference between a parameter passed by reference, and a parameter passed by value? Could you give me some examples, please?
8
votes
4answers
368 views

How to modify an array in function?

MATLAB is a pass by value language. I have a recursive function that processes pixel's neighbors. It is very expensive to make the copy of the image (in my case two images) each time the function is ...
8
votes
5answers
4k views

Emulating pass-by-value behaviour in python

I would like to emulate the pass-by-value behaviour in python. In other words, I would like to make absolutely sure that the function I write do not modify user supplied data. One possible way is to ...
7
votes
5answers
230 views

Good practice to edit objects “by reference”?

Let's say I've got a type called Superstar. Now I want to have a method that does some work and edits some properties of a Superstar object. Here are two ways of how I could implement this. Way 1 ...
7
votes
5answers
306 views

Const correctness for value parameters

I know there are few question about const correctness where it is stated that the declaration of a function and its definition do not need to agree for value parameters. This is because the constness ...
6
votes
5answers
597 views

Function Overloading Based on Value vs. Const Reference

Does declaring something like the following void foo(int x) { std::cout << "foo(int)" << std::endl; } void foo(const int &x) { std::cout << "foo(const int &)" ...
6
votes
12answers
954 views

C Programming - Pass-by-Reference

In the C program below, I don't understand why buf[0] = 'A' after I call foo. Isn't foo doing pass-by-value? #include <stdio.h> #include <stdlib.h> void foo(char buf[]) { ...
6
votes
6answers
321 views

Problem with passing by reference

Can I overload a function which takes either a reference or variable name? For example when I try to do this: void function(double a); void function(double &a); I would like the caller of ...
6
votes
4answers
311 views

Pretending .NET strings are value type

In .NET, strings are immutable and are reference type variables. This often comes as a surprise to newer .NET developers who may mistake them for value type objects due to their behavior. However, ...
6
votes
16answers
876 views

Can someone explain to me what the reasoning behind passing by “value” and not by “reference” in Java is?

I'm fairly new to Java (been writing other stuff for many years) and unless I'm missing something (and I'm happy to be wrong here) the following is a fatal flaw... String foo = new String(); ...
5
votes
4answers
94 views

Immutable and pass by value

I have the following code which has a mutable Person class, String and a method to modify the instances of String and Person class Person{ int a = 8; public int getA() { return a; } public ...
5
votes
3answers
170 views

How Do I Pass By Value?

import std.stdio; class IntegerContainer { public int Integer = 1; } void DoubleInteger(IntegerContainer Container) { Container.Integer *= 2; } void main() { IntegerContainer Container ...
5
votes
3answers
235 views

Javascript by reference vs. by value

I'm looking for some good comprehensive reading material on when Javascript passes something by value and when by reference and when modifying a passed item affects the value outside a function and ...
5
votes
3answers
294 views
5
votes
4answers
369 views

template pass by value or const reference or…?

I can write a templated function this way template<class T> void f(T x) {...} or this way template<class T> void f(T const& x) {...} I guess that the second option can be more ...
5
votes
4answers
182 views

Why can't my Java method change a passed variable?

I was kind of baffled when I saw the following code did not work as expected. I thought Java always passed variables by references into functions. Therefore, why can't the function reassign the ...
5
votes
3answers
362 views

How are arrays passed?

Are arrays passed by default by ref or value? Thanks.
5
votes
2answers
377 views

Can we overload a function based on only whether a parameter is a value or a reference?

I got the answer NO! Because passing by value and passing by reference looks identical to the caller. However, the code below compiles right class A { public: void f(int i) {} void f(int& ...
4
votes
4answers
72 views

Can someone explain how java is pass by value only when

When I take an array, something like this: int anArray[] = new int[5]; //initialize to 0 doStuff(anArray); //inside doStuff anArray[3] = 731; //passes back to main System.out.println(anArray[3]); ...
4
votes
4answers
252 views

C99 const pass-by-value

I have been studying the GNU Scientific Library source code and I keep seeing the following type of declarations: double cblas_ddot (const int N, const double * x, const int incx, const double * y, ...
4
votes
4answers
762 views

Is passing pointer argument, pass by value in C++?

Is passing pointer argument, pass by value in C++? Since i see that any change to the pointer as such is not reflected outside the method. The changes i do by dereferencing the pointer is reflected ...
4
votes
2answers
88 views

Return a value or modify reference?

I've seen both before, and as far as I know, it's pretty much subjective, but if given the option, which would you do and why? If the data were large, would there be any speed/memory benefit to one ...
4
votes
4answers
773 views

Pass by reference more expensive than pass by value

this question has been bugging me for a while, so i thought i'd ask. Is there a case where pass-by-reference is more expensive than pass-by-value in C++? If so, what would that case be? Thanks.
4
votes
6answers
20k views

Pass by Reference / Value in C++

I would like to clarify the differences between by value and by reference. I drew a picture So, for passing by value, a copy of an identical object is created with a different reference, and the ...
3
votes
5answers
92 views

Is it passing by pointer?

void func(char* buf) { buf++;} Should I call it passing by pointer or just passing by value(with the value being pointer type)? Would the original pointer passed in be altered in this case?
3
votes
4answers
113 views

If Java is pass-by-value only, can I mandate a final modifier in formal parameters?

If Java is strictly pass-by-value for non primitive, isn't it better to establish coding standards like make all formal parameters of methods and constructors final? - to avoid confusion?
3
votes
3answers
71 views

Pointer trouble

I am having trouble getting my pointers to work correctly. In my main file I declare Analysis2 analysis = Analysis2(); MaxResults maxresults = MaxResults( analysis); Now in my MaxResults class, I ...
3
votes
6answers
246 views

Properties - by value or reference?

I've got the following public property which exposes an Arraylist: public ArrayList SpillageRiskDescriptions { get { return _SpillageRiskDescriptions; ...
3
votes
2answers
535 views

does objective-c methods support “pass by value”?

Does objective-c methods support "pass by value"? Or perhaps to be more specific: Is the default behavior for parameters passed into a method pass-by-reference? If yes, are there any variations ...
3
votes
6answers
336 views

Where should I prefer pass-by-reference or pass-by-value?

In what circumstances should I prefer pass-by-reference? Pass-by-value?
3
votes
2answers
100 views

ByRef seems to receive the value and not the reference in VBA 6.0

My little sample code Function AddNr(ByRef x As Integer) As Integer x = x + 2 AddNr = x End Function Sub test() Dim ana As Integer ana = 1 AddNr (ana) MsgBox ana End Sub ...
3
votes
5answers
106 views

Value or reference semantics in this situation?

I don't have a feeling (yet, I hope) for whether to chose value or reference semantics in some situations. Is there any rule of thumb I can apply? I usually pick references for everything other than ...
3
votes
2answers
137 views

Why does the C++ standard not prohibit such a dreadful usage?

The source code is very simple and self-evident. The question is included in the comment. #include <iostream> #include <functional> using namespace std; using namespace std::tr1; struct ...
3
votes
3answers
351 views

How do I create a CLI value class containing a List (or similar) which is passed by value?

We have a C++ library which uses a struct containing an STL vector of structs, like so: struct Params { // values... } struct Settings { std::vector<Params> m_params; // values... ...
3
votes
4answers
167 views

Java object references with cache layer

We've created a caching layer to our J2EE-application. In this instance we use Ehcache. This has created a few challenges. Let's take this example. OrderItem orderitem = ...
3
votes
8answers
2k views

Pass by value or reference, to a C++ constructor that needs to store a copy?

Should a C++ (implicit or explicit) value constructor accept its parameter(s) by value or reference-to-const, when it needs to store a copy of the argument(s) in its object either way? Here is the ...
2
votes
2answers
40 views

Is it clone safe to pass a classes enum to a clone?

I have a simple class that holds skeleton for a much larger, bulkier class. All this skeleton is is a string id, a type enumeration and some flags for options. I would like to be able to clone this ...
2
votes
2answers
39 views

JavaScript Recursion with Timing Event (setTimeout)

I am trying to build a timer with JavaScript. Here's my function: var t; function time(num){ var buf = num; document.getElementById("test").innerHTML=buf; buf++; alert(buf + " " + ...

1 2 3