Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

242
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 ...
139
votes
11answers
51k views

Python: How do I pass a variable by reference?

The Python documentation seems unclear about whether parameters are passed by reference or value, and the following code produces the unchanged value 'Original' class PassByReference: def ...
34
votes
11answers
7k views

Passing by reference in C

If C does not support passing a variable by reference, why does this work? #include <stdio.h> void f(int *j) { (*j)++; } int main() { int i = 20; int *p = &i; f(p); printf("i = ...
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 ...
31
votes
3answers
25k views

How can I pass a reference to a function, with parameters?

I need to able to pass a reference to a function with a given set of parameters. Here is an example of passing a reference without parameters: var f = function () { //Some logic here... }; var ...
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
9answers
6k views

Why should I use the keyword “final” on a method parameter in Java?

I can't understand where the final keyword is REALLY handy when it is used on method parameters. If we exclude the usage of anonymous classes, readability and intent declaration then it seems ...
23
votes
7answers
680 views

Why can't arrays be passed as function arguments?

Why can't you pass arrays as function arguments? I have been reading this C++ book that says 'you can't pass arrays as function arguments', but it never explains why. Also, when I looked it up online ...
23
votes
4answers
22k views

How to access original activity's views from spawned background service

I have an activity called A, and on the selection of menu item 0, it spawns service B, which starts a runnable C in a new thread. I have a TextView in activity A, which I want to access in thread C. ...
22
votes
7answers
2k views

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

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
5answers
8k views

Are there benefits of passing by pointer over passing by reference in C++?

Are there benefits of passing by pointer over passing by reference in C++? Lately, I have seen a number of examples that pass the a pointer instead of passing by reference. Are there benefits 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 ...
19
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 ...
18
votes
5answers
5k views

Passing properties by reference in C#

I'm trying to do do the following: GetString( inputString, ref Client.WorkPhone) private void GetString(string in, ref string out) { if (!string.IsNullOrEmpty(in)) { out = ...
17
votes
7answers
506 views

Return code or out parameter?

I'm making a method to fetch a list of filenames from a server but I have come to a problem that I cannot answer. The method returns two things: an SftpResult which is an enum with a variety of ...
16
votes
10answers
12k views

PHP Variables passed by value or by reference?

Are PHP variables passed by value or by reference?
14
votes
3answers
515 views

why copy constructor is called when passing temp by const ref?

I am passing an unnamed temporary object to a function defined with const ref parameter. The copy ctor of the class is private, and I get a compilation error. I don't understand why a copy constructor ...
14
votes
13answers
856 views

Consequences of only using stack in C++

Lets say I know a guy who is new to C++. He does not pass around pointers (rightly so) but he refuses to pass by reference. He uses pass by value always. Reason being that he feels that "passing ...
12
votes
8answers
2k views

C# Pass a property by reference

Is there anyway to pass the property of an Object by reference? I know I can pass the whole object but I want to specify a property of the object to set and check it's type so I know how to parse. ...
12
votes
10answers
2k views

What is the difference between passing by reference in Java and passing a pointer in C?

I have been studying Java for a few months and am now starting to learn C. I am a little confused, I was under the impression that passing an object by reference and passing a pointer to that object ...
11
votes
6answers
2k views

In PHP (>= 5.0), is passing by reference faster?

In PHP, function parameters can be passed by reference by prepending an ampersand to the parameter in the function declaration, like so: function foo(&$bar) { // ... } Now, I am aware that ...
10
votes
5answers
1k views

PHP: check if object/array is a reference

Sorry to ask, its late and I can't figure a way to do it... anyone can help? $users = array( array( "name" => "John", "age" => "20" ), array( "name" => ...
10
votes
3answers
289 views

What is the purpose of using a reference to a reference in C++?

In my adventures studying the boost libraries, I've come across function signatures that have parameters which are a reference to a reference to an object. Example: void function(int && i); ...
10
votes
10answers
538 views

pass by reference c++

My teacher in c++ told me that call by reference should only be used if I'm not going to change anything on the arrays inside the function. I have some really big vectors that I'm passing around in my ...
10
votes
9answers
973 views

Origin of term “reference” as in “pass-by-reference”

Java/C# language lawyers like to say that their language passes references by value. This would mean that a "reference" is an object-pointer which is copied when calling a function. Meanwhile, in C++ ...
10
votes
9answers
14k views

Default value to a parameter while passing by reference in C++

Is it possible to give a default value to a parameter of a function while we are passing the parameter by reference. in C++ For eg. when i try to declare a function like virtual const ULONG ...
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
2answers
87 views

Pass std algos predicates by reference in C++

I am trying to remove elements from a std::list and keep some stats of deleted elements. In order to do so, I use the remove_if function from the list, and I have a predicate. I would like to use ...
9
votes
6answers
330 views

C#'s ref and out in Java

As we know both language are pass-by-value when passing parameters to methods. But C# supports ref and out keywords to pass-by-reference of primitive types. I am looking for the same keywords and ...
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?
9
votes
3answers
6k views

In C++/CLI, how do I declare and call a function with an 'out' parameter?

I have a function which parses one string into two strings. In C# I would declare it like this: void ParseQuery(string toParse, out string search, out string sort) { ... } and I'd call it like ...
8
votes
3answers
295 views

Obtaining a pointer to the end of an array

I use the following template to obtain a pointer pointing after the last element of an array: template <typename T, size_t n> T* end_of(T (&array)[n]) { return array + n; } Now I seem ...
8
votes
4answers
364 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
4answers
3k views

Java : Best way to pass int by reference

I have a parsing function that parses an encoded length from a byte buffer, it returns the parsed length as an int, and takes an index into the buffer as an integer arg. I want the function to update ...
8
votes
5answers
584 views

C++ Pass By Const Reference and Return By Const Reference

I'm trying to understand if there is any benefit to returning a const reference. I have a factorial function that normally looks like this: unsigned long factorial(unsigned long n) { return (n == ...
8
votes
3answers
718 views

C# 4.0 'dynamic' doesn't set ref/out arguments

I'm experimenting with DynamicObject. One of the things I try to do is setting the values of ref/out arguments, as shown in the code below. However, I am not able to have the values of i and j in ...
8
votes
14answers
629 views

Best way to return early from a function returning a reference

Let us say we have a function of the form: const SomeObject& SomeScope::ReturnOurObject() { if( ! SomeCondition ) { // return early return ; } return ourObject; ...
8
votes
3answers
1k views

Is it possible to pass properties as “out” or “ref” parameters?

Can I pass a property as an "out" or "ref" parameter if not then why not? e.g. Person p = new Person(); . . . public void Test(out p.Name);
7
votes
2answers
120 views

Testing optional arguments in PHP

I have a few "setter" methods across classes, and for convenience I've added an optional parameter $previous, which takes an argument by reference and populates it with the existing value before ...
7
votes
3answers
115 views

Passing temporaries as non-const references in C++

I have the following piece of code, as an example dec_proxy attempts to reverse the effects of the increment operator upon the type that is executed in a complex function call foo - which btw I cannot ...
7
votes
3answers
198 views

Why c# don't let to pass a using variable to a function as ref or out [closed]

Possible Duplicate: Passing an IDisposable object by reference causes an error? Why doesn't C# allow passing a variable from a using block to a function as ref or out? This is my code: ...
7
votes
3answers
1k views

How do I pass large numpy arrays between python subprocesses without saving to disk?

Is there a good way to pass a large chunk of data between two python subprocesses without using the disk? Here's a cartoon example of what I'm hoping to accomplish: import sys, subprocess, numpy ...
7
votes
3answers
320 views

How does @_ work in Perl subroutines?

I was always sure that if I pass a Perl subroutine a simple scalar, it can never change its value outside the subroutine. That is: my $x = 100; foo($x); # without knowing anything about foo(), I'm ...
7
votes
5answers
229 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
2answers
348 views

Why is calling a function (such as strlen, count etc) on a referenced value so slow?

I've just found something very strange in PHP. If I pass in a variable to a function by reference, and then call a function on it, it's incredibly slow. If you loop over the inner function call and ...
7
votes
2answers
471 views

Returning object from function

I am really confused now on how and which method to use to return object from a function. I want some feedback on the solutions for the given requirements. Scenario A: The returned object is to be ...
7
votes
7answers
7k views

Is returning a whole array from a Perl subroutine inefficient?

I often have a subroutine in Perl that fills an array with some information. Since I'm also used to hacking in C++, I find myself often do it like this in Perl, using references: my @array; ...
7
votes
3answers
11k views

Java: How to pass byte[] by reference?

You can do it in .NET by using the keyword "ref". Is there any way to do so in Java? Thanks in advance!

1 2 3 4 5 13