Call by reference is an evaluation strategy whereby arguments to a function are references to the location in memory rather than a copy of the value.
0
votes
3answers
42 views
Unexplained behavior while using hashmaps
The stripped down program below works well for me but when I move the hashVal declaration (in bold) outside the for loop, my program does not run correctly. Any reasons why I need it to be inside the ...
0
votes
0answers
5 views
.Net How to prevent DataTable returned to event subscribers from being changed by them to guard against iteration problems
I have a publisher class that needs to provide periodic data updates to 2+ subscribers.
I made an event that returns a datatable with the latest copies of the data.
My worry is that the same object ...
1
vote
3answers
16 views
What is the behaviour of JAVA while calling a function and passing an object as an argument to it?
Below is the code in which I have few doubts as in JAVA there is no pass by reference or pass by address. Then why is there change in output after calling of methods? And also want to know internal ...
0
votes
1answer
20 views
Call-time pass-by-reference has been deprecated in include()
I moved my website from one server to another. Everything runs, but since I have the new server, the logs
Deprecated function: Call-time pass-by-reference has been deprecated in include() (line 6 ...
1
vote
3answers
50 views
How to pass filehandle as reference between modules and subs in perl
I'm maintaining old Perl code and need to enable strict pragma in all modules. I have problem in passing file handle as a reference between modules and subs. We have common module responsible for ...
0
votes
1answer
25 views
JavaScript stop referencing object after pass it to a function
I know JavaScript passes Objects by reference and thus I'm having a lot of trouble with the following code:
function doGradeAssignmentContent(dtos) {
var x = 5;
...
0
votes
0answers
28 views
Why does PHP need to make a copy of a variable passed by reference? [closed]
This is the scenario:
<?php
function put(&$mixed, $key, $value) {
if (is_array($mixed)) {
$mixed[$key] = $value;
} else {
// Do something else which we don't care about here
}
}
...
5
votes
0answers
62 views
Performance issues with array testing in PHP. Why? [duplicate]
Fast code (100ms):
// Mixed could theoretically be an object or an array.
// In this example it's an array.
$mixed = array();
for($i = 0; $i < 10000; $i++) {
if (is_array($mixed)) {
...
1
vote
4answers
82 views
Is Ruby pass-by-value or pass-by-reference?
I am basically a java developer. I am working in ruby for about an year. Unlike java, Ruby is a pure object oriented programming language. Here comes a doubt. Is it pass-by-value or pass-by-reference? ...
0
votes
0answers
23 views
pass by reference for pointers in C++ Cli
so this is my code
public ref struct noeud { info val;noeud^ FD; noeud^ FG;};
and here is the function
void newwcmnd(noeud^ %A,info v){
if (arbrevide(A))
...
0
votes
1answer
33 views
Array filling that users inputs with Method
i need your help for my project. I'm writing an program which show students informations that users fills previously. this is about how much did i learn the methods. I already wrote a program with out ...
1
vote
2answers
31 views
How to pass by reference in ActionScript?
I'm trying to modify an Object in another class. So I have something like this:
MainClass.as:
..
var myObject:Object = new Object();
Class2_Instance.get_JSON(myObject);
trace(myObject.id); // ...
4
votes
2answers
60 views
passing data members by reference
What happens if I pass a data member by reference to a function, and while that function is running, the Garbage Collector starts running and moves the object containing the data member in memory?
...
3
votes
5answers
81 views
C/C++: efficient way to use a vector returned by a function
Suppose we have a vector called V of type vector<int> which is a private member of a class.
We also have this public function of the class:
vector<int> getV(){ return V; }
now if I ...
0
votes
3answers
19 views
how to disable jquery data function return value by ref?
somehow getting jquery data() function return an object by ref.
it is a way in javascript to point to the object him self without to modify the ref object ?
here is my demonstration of the problem :
...
-1
votes
1answer
22 views
PHP Passing by value to function large objects and modifing small part of it [closed]
I read a lot that passing by reference to functions in php is wrong if we don't really need to change original object and we want to increase performance. So let's say I'm passing a quite large object ...
1
vote
2answers
52 views
C++ passing an object
I'm currently learning C++, but It doesn't works like I expected. I made some classes for a BowlingGame (just something text-based) and that works well. But now I want to pass an object of a ...
1
vote
2answers
24 views
Strange foreach loop after modifying array
As I wrote some code, PHP confused me a little as I didn't expected the result of the following code:
$data = array(array('test' => 'one'), array('test' => 'two'));
foreach($data as ...
0
votes
1answer
32 views
Some updates are discarded out of a method
I have a set of objects inherits from one BaseObject which have some global primitive properties (indexes etc). Now, I have two objects, one of them (the target one) have values only for the base ...
1
vote
2answers
30 views
g++ issue for passing arguments
Please consider these partial codes:
//Tree.h
class Tree {
private:
Limits joint_limits;
public:
Tree();
Tree(Configuration root, const Limits& _joint_limits);
~Tree();
//the ...
0
votes
1answer
9 views
How can I use a reference only and make no copies of the object argument in php
I have a function that requires information to be passed to it. The information is contained within an object. Therefore I must pass that object as one of the function arguments. The object is very ...
1
vote
1answer
64 views
Mocking Reference Parameter with RhinoMocks
I my code, I have the following call:
string proposed=string.Empty;
validator.IsValid(arg0, arg1, ref proposed);
I stub the validator in my test and want that stub to alter the content of the ...
0
votes
2answers
71 views
Conformity issue arises when using interfaces with function pointers
I am starting this thread to ask for help solve a problem that might come from my wrong specification of a function interface, but I don't know how to fix it.
The error message I encountered is ...
9
votes
3answers
160 views
Inexplicable expense related to getting data out of a function in optimized and timed C++ code
I have written optimized code for an algorithm that computes a vector of quantities. I have timed it before and after various attempts at getting the data computed in the function out of the function. ...
0
votes
3answers
79 views
Pass by value vs Pass by reference with polymorphism
The following code shows a pass by reference example using ref keyword.
class Program
{
static void Main(string[] args)
{
int c1 = 10;
ClassC c2 = new ClassC(10);
...
-1
votes
1answer
46 views
C++ Template Swap Function
I need to make a swap function that swaps two parameters of type T.
And following is what I code but something must be wrong.
Could anybody better my codes?
template<typename T>
void swap ...
0
votes
0answers
64 views
best practice for breaking references in C#
I was wondering how can I break a reference to an instance if I can't put anything to null (because the program won't work), then can't use Dispose: (if object!=null) {object.Dispose();}, and don't ...
0
votes
1answer
69 views
Calling a WCF function (with parameters by reference) from VBA code in Excel
I have developed a WCF service which is successfully working. Then I have some VBA code in Excel that I wrote following this guide - http://damianblog.com/2009/07/05/excel-wcf/
It is working, I have ...
1
vote
1answer
61 views
Fortran: pointer to various array-valued functions
I am starting this thread because I want to learn how to successfully use the same pointer to serve as the aliases of different array-valued functions, say, f1 and f2, sequentially.
Here is an ...
0
votes
2answers
32 views
Pass by reference in objective c
I am a calling c++ method from objective c:
C++ Method:
void TestMethod( size_t& outputSize,
OutputArray& outputArray );
Objective C:
-(void) testMethodObjc : outputSize,
...
0
votes
2answers
32 views
Does JavaScript shift() method returns reference or copy of the element?
Lets say i have tree objects declared like this:
var obj1 = new Car();
var obj2 = new Car();
var obj3 = new Car();
and i put them in an array
var myArray = [];
myArray.push(obj1);
...
3
votes
1answer
91 views
Can I have a function/method passing an argument by reference and an overload passing it by value in C++? [duplicate]
In C# this is certainly possible, as this compilable example can show:
static void Teste(int x) { }
static void Teste(ref int x) { }
static void Teste()
{
int i = 0;
Teste(i);
Teste(ref ...
0
votes
1answer
36 views
How to pass by reference a button's or other control's text
String ^% text = button->Text ;
text = "something" ;
Should change button's text, but it doesn't.
2
votes
1answer
84 views
ruby pass-by-reference vs pass-reference-by-value
Coming from a heavy C++ background, I am having a hard time understanding how ruby function parameters are passed, or rather, I am having difficulty understanding the difference in semantics between ...
0
votes
4answers
51 views
Error in passing a map by reference to a function
I want to pass a map by reference to a function.
Here is the code:
void test(map<int, double *> &a);
int main(){
map<int, double *> a;
test(a);
cout << a[1][1] ...
0
votes
1answer
45 views
breaking references to a form C#
I have a license project (Database Interaction Project) and I want to remove all references from a form that loads data from a DB, because I load a lot of data and the memory usage is high. I profiled ...
4
votes
3answers
73 views
What is the difference between “&=” and “=&” when assigning a variable value in PHP?
I know that =& usually means "assign by reference", but what happens if we reverse these two characters, since I've seen this in plenty of PHP scripts?
2
votes
4answers
162 views
Why this method does not change Integer value?
I do have one question:
Why this method does not change Integer value to 3?
public class SomeClass { private Integer value = 1;
public Integer getValue() {
return value;
}
public void ...
0
votes
2answers
75 views
Pass by reference with strings
So I'm writing a string fragment reassembly program and am having trouble with the following. If one string is contained in the other, I need to have the first String be set to the larger of the two ...
4
votes
2answers
67 views
Avoiding duplicating data when using SuperClass
I am developing a MATLAB OOP project for the first time. My parent class will have a very large matrix which the children(many) need to access. How can I prevent the children from duplicating the data ...
1
vote
1answer
45 views
Passing the return of a function as a parameter by reference in PHP?
THIS IS NOT A DUPLICATE, READ THE QUESTION MORE CAREFULLY
It's about the possibility to pass by value when the argument is marked as by-reference.
In PHP you can pass the return value of a function ...
0
votes
1answer
27 views
Changing variable when passing by value
I have a main function that declares a double. It then passes it to void Display, which displays the double. The main then passes the double (by value) to a function void Pointers which calls the ...
1
vote
4answers
48 views
Assign array value by function return reference
I want to assign a value to an array element, which is returned by a function with a reference argument. The code:
function f(&$y) {
return $y;
}
$y = '';
$x = array(
'a' => 1,
...
3
votes
2answers
32 views
appending generators to a stack in loop, generators point to final loop variable
I'm doing some graph traversal. At each point I save a generator of the other possible options that could have been explored. Later, I explore a few of those generators but it doesn't work.
Here is a ...
-4
votes
4answers
62 views
C passing and pointers
So I'm writing this program, and I do not know how to pass by reference or value. I just need to pass for values from one function (processFile) to another function (printReport). Any help on how to ...
1
vote
2answers
37 views
Passage of a reference to a pointer for base classes
I have a class Child that extends Base. In my class Foo I have methods with the signature like:
void Foo::doStuff(Base *& base); // case A
void Foo::doOther(Child *& child); // case B
...
0
votes
4answers
189 views
Returning result via Output-parameter, c++ coding standard [duplicate]
I have a member function in my class like this:
int MyClass::m_Func(int& val);
in which, I do some operation and put the result in val. And depending upon the result of the operation, I ...
4
votes
2answers
81 views
How to use a stop condition on a block like the enumerateObjectsUsingBlock from the NSDictionary class?
I want to make a method on my class like enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) from the NSDictionary class.
I have a little knowledge on blocks usage, but I have not been ...
0
votes
2answers
39 views
Manipulate parameter in php
I'm relatively inexperienced with PHP and I'm trying to make some changes to an existing code base. I have a method that takes an array as a parameter:
public function get_ids(array $order)
{
...
0
votes
2answers
231 views
Using Array Lists and Creating Objects
I am struggling with being able to understand how adding objects to an array list works, and the associated syntax.
Reviewing array lists in the Java, "How to Program" 9th edition. It doesnt clearly ...



