The ref keyword causes an argument to be passed by reference, not by value. The effect of passing by reference is that any change to the parameter in the method is reflected in the underlying argument variable in the calling method. The value of a reference parameter is always the same as the value ...

learn more… | top users | synonyms

-1
votes
1answer
21 views

ws02 dataservice use parameter IN ORACLE_REF_CURSOR

I use WSO2 DataService for my web services. How can declare a parameter with: parameter IN type ORACLE_REF_CURSOR I do not have any problem with OUT parameter.
0
votes
0answers
26 views

Generating json schema with fasterxml 2.2.0 - How to reference types?

I'm using the fasterxml json framework version 2.2.0 in order to create the schema in json of the API of the app I'm working on. My API is similar to : https://gist.github.com/nemo83/5555249 Where ...
5
votes
5answers
85 views

What is the difference between 2 methods with ref object par and without?

I wonder what the difference is between the following methods with regards to how the object parameter is referenced: public void DoSomething(object parameter){} and public void DoSomething(ref ...
0
votes
1answer
24 views

How do I enable the REFS_OK flag in nditer in numpy in Python 3.3?

Does anyone know how one goes about enabling the REFS_OK flag in numpy? I cannot seem to find a clear explanation online. My code is: import sys import string import numpy as np import pandas as pd ...
14
votes
4answers
369 views

C# ref is it like a pointer in C/C++ or a reference in C++?

I'm working with the ref and don't understand clearly "Is it like a pointer as in C/C++ or it's like a reference in C++?" Why did I ask such a weak question as you thought for a moment? Because, when ...
0
votes
2answers
59 views

C# WCF returning parameters with/without REF/OUT

Following is a SIMPLIFIED VERSION of my WCF service code. This code works fine and returns me the data. My question is this only works if I pass the customers object either by ref or by out. If I ...
0
votes
0answers
38 views

SQL REF Oracle Error

Using some types which i will show below: CREATE TYPE Course_objtype AS OBJECT ( Course_code VARCHAR2(4), Course_name VARCHAR2(200), Study_mode CHAR(2), Campus REF Campus_list, Faculty REF ...
5
votes
6answers
71 views

which is better in this case, return or ref

suppose i have the following group of static functions here i sent the variable by reference: public static void ProcessEmailMessage(ref string HTML) { ModifyLinks(ref HTML); ...
0
votes
1answer
314 views

Sencha Touch 2.1 Get View by Ref in Controller

When trying to programatically push a view into the main navigation view on the viewport, I get the following error: Uncaught TypeError: Object [object Object] has no method 'getMainPanel' when the ...
0
votes
1answer
40 views

Clojure:Why is Ref Lost on Assoc

I am working on updating counters in a map ref in Clojure. (defn increment-key [this key] (dosync (let [value (get @this key)] (if (= value nil) (alter this ...
1
vote
1answer
96 views

Clojure: Idiomatic use of atom and ref?

I am working out a bit of Clojure code that will take a ref to a map and increment a key value pair in the map. I think I am using ref correctly, but Im not sure about atom. Do I need to use swap! ...
2
votes
1answer
117 views

perl (Statistics::PCA): Can't use string (“0”) as an ARRAY ref while “strict refs”

I'm trying to use the Statistics::PCA package to conduct a PCA on some genetic variants. The package requires reading in a list of lists (if I understood it correctly, that can be an array of arrays, ...
1
vote
1answer
37 views

How can take ref parameter using Invoke with Reflectıon

How can take ref parameter(OutputData) using Invoke with Reflectıon. objectValues ıs an object array that take an parameters ıs sendıng parameter to "FM_DEC_ENC" Method.This method contains 8 ...
0
votes
1answer
18 views

XSD - how to add two 'ref' to the same element

I have been trying to form this XSD, can someone help please... I have an element 'country' as below: <xs:element name="country"> <xs:complexType> <xs:sequence> ...
3
votes
1answer
55 views

ParameterInfo properties, attributes and out ref parameters of the methods

Well, I'm confused by the properties of the ParameterInfo class. Unfortunately documentation is not very clear: examples show how to build methods but don't show how these methods look in C#. Cane ...
3
votes
1answer
185 views

Tuples vs. custom struct for async version of a method with ref/out parameter

Consider a C# API with method that has out or ref parameter, e.g.: Person FindPerson(string name, out int searchTime); Let's not pay attention to the fact that out and ref parameters are usually a ...
7
votes
2answers
379 views

What would be a “Hello, World!” example for “std::ref”?

Can somebody give a simple example which demonstrates the functionality of std::ref? I mean an example in which some other constructs (like tuples, or data type templates) are used only if it is ...
1
vote
2answers
102 views

Clojure Refs in a game loop for state: why does it go slower and slower?

I am trying to update a map each step based on the previous step. I have a ref that is a vector of vectors of numbers and to blur my world-map I rotate left, right, up and down and then average my ...
1
vote
1answer
63 views

Using ref with lists and how the list is kept updated

I am writing a game, will have a class just for my collision in the world. I want to pass it two lists in its constructor, one that will contain all the Enemies, and another that will contain all the ...
2
votes
2answers
109 views

remove_if with boost::bind is slow

I have a std::list of classes and want to remove entries that are marked for delete. I am using std::remove_if and erase. class MyClass { bool isDone(MyData& myData) { return ...
-1
votes
4answers
113 views

How Pass Referenced DataTable in C#?

I Work on C# Project I Have 2 Classes Like this: public class A { public DataTable dtA {get; set;} } public class B { DataTable dtB{get;set;} public B(DataTable dt) { dtB = ...
1
vote
3answers
91 views

Creating a dynamic string in C#

I have string which I create like: string label = Name + " " + Number; where Name and Number are properties. I want this label string to change whenever the Name or Number is updated. I tried to ...
1
vote
0answers
39 views

mono - how to use ref with CreateInstance or InvokeMethod?

How do I pass by 'ref' using CreateInstance in Mono? Example: public MyMethod(ref SomeType data) {... ... SomeType st = new SomeType(); object handle = Activator.CreateInstance(type, new object[] { ...
0
votes
3answers
79 views

Java reflection to change parameter?

I'm writing a method in Java that I want to simulate references.. Since java doesn't have the out keyword like in C# and doesn't have References/Pointers like in C++, I want to know if I can use ...
0
votes
3answers
91 views

PHP and MySQLi - Cannot pass parameter 2 by reference in

i am trying to make a function which will check update and insert some datas but i am having an issue in the first step where the $stmt->bind_param is saying that is not passing parameters by ...
0
votes
5answers
101 views

How to pass in the “modifier” string returned by the function?

class test { public String get() {return s;} private String s="World"; } class modifier { public static void modify(ref String v) { v+="_test"; } } String s1="Earth"; ...
2
votes
1answer
142 views

How to properly reference local resources in HTML?

As it turns out, referencing local resources can be a rub point for some. I'm looking for a canonical answer to local resource referencing, and what they mean. Take these examples, what is the ...
0
votes
2answers
68 views

Using reference (ref) as parameter for objects of the same base class (C#)

Is it possible to pass in an object reference to a method signature for classes that share the same base class? i.e., simplified: public class ClassA : System.Web.UI.Control public class ClassB : ...
0
votes
1answer
126 views

Perversion. Does exist any way to natively use references with lambdas in C#?

I have some variables which were given through ref keyword in my function. I want to use ref-variables in lambda expression without using local variables exactly. I know that C# can't merge lambdas ...
9
votes
3answers
256 views

Keep a TypedReference alive out of method block without returning it

I want to premise that this question's purpose is checking if there's at least one way, even if through the most unsafe hack, to keep a reference to a non-blittable value type. I am aware that such a ...
4
votes
3answers
98 views

Strategies for passing colors around (avoiding ref?)

I'm refactoring code in an aging windows application, and I've come across a pattern of sorts, that I'm not sure I like: A class has got global color variables, like the following: private Color ...
3
votes
3answers
121 views

How to pass a constant string reference to function

This post is not really about the bug in the code down below, I can myself imagine dozens of ways to solve it, its more principally related to simplicity, elegance and performance! I had to do a very ...
1
vote
2answers
71 views

Typed ref cells?

I'm an ocaml noob. Using plain old ref to int, or other simple built-in types, so far works for me as expected in all ways. I've used them in the context of tuples where the refs are members of ...
1
vote
2answers
67 views

Perl: proper way to check ref of a hashref in one swoop?

Given Example Code: foo(bar=>"test"); foo(bar=>["test"]); sub foo { my $args = {@_}; say ref($args->{bar}); say ref(\$args->{bar}); } Outputs: {expected blank} SCALAR ...
0
votes
2answers
135 views

Marshalling a structure in an out returns garbage

I am trying to store and retrieve some data into/from an unmanaged dll. I have tried to narrow down my problem by simplifying the struct as much as possible and here is what I am getting down to: ...
1
vote
5answers
79 views

Which types pass by reference and which by value?

If I pass an int it will be passed by value. void something(int i) If I pass some type of array it will be passed by reference. void something(int i[]) OR void something(int *i); Types like int will ...
3
votes
2answers
72 views

Using boost::ref to indicate intention in coding conventions

When functions take non-const refs as arguments, it can create hard-to-read code because at the calling site it is not obvious which inputs might be changed. This has lead some code conventions to ...
0
votes
2answers
499 views

Creating property to a ref bean, Spring

I have searched in this site a lot of spring.. but i'm really new to this.. so here is my question: I have 3 main classes i'm gonna put it like this.. public class User { private String name; ...
1
vote
0answers
65 views

Purpose of ref parameter to web service

Okay, I've got some sample code that I'm supposed to be going through to use an example for how to use a product...and I've got this code: protected void checkout_Click(object sender, EventArgs e) { ...
1
vote
1answer
38 views

Error with Ref parameter

public Resultado Procesar_Respuesta_Estructurada(ref object ObjetoIN, ref string Login, string NombreMetodo) { int i = 0; Resultado ObjetoOUT = default(Resultado); bool ...
1
vote
1answer
3k views

Excel VLOOKUP #REF Error

I'm trying to create an integrated athletic planning and training calendar. Part of this is for one sheet to identify weeks in which races occur based upon races and dates identified by the user on ...
0
votes
1answer
37 views

Saving reference in a Field

I'm trying out the following code: public partial class Test: Window { public Test(ref List</* Type */> LList) { [...] this.ListField = LList; } private ...
0
votes
1answer
76 views

ref() in Boost::Lambda?

What is the equivalent of Boost::Phoenix's ref in Boost::Lambda? I can't find it in the online docs. #include <algorithm> #include <string> #include <boost/lambda/bind.hpp> using ...
0
votes
1answer
34 views

Trouble referencing an array mashaled as unmanaged with a constant size

I am trying to understand what is going on behind the curtain when I create an array with a constant size as below: [MarshalAs(UnmanagedType.ByValArray, SizeConst = 10)] public float[] constArray; ...
0
votes
1answer
68 views

Shouldn't two consts in mysql for ref be a type const?

I have the following MySQL query explain select item_id from items use index(user_item_id) where user_id=9 and item_id=10000 the following is returned id select_type table type possible_keys ...
6
votes
1answer
141 views

Returning vs. using a reference parameter

This is really bugging me, coming from a C# background. Sometimes, I see functions written like this: int computeResult(); This is what I'm used to. But then I see them written like this: void ...
1
vote
1answer
3k views

how to call plsql procedure out parameter as a user-defined ref cursor?

I have a package P and a precedure A in it. create or replace package pkg_get_users_info_by_role as type user_info_ref_cur is ref cursor; procedure get_user_info_proc (p_role_name varchar2, ...
0
votes
0answers
101 views

Facebook Likes contain fb_ref attribute and shares/posts of the like do not

When creating a like button and adding the ref attribute like this: <fb:like href="somelink" ref="some_referrer" width="200" send="false" layout="button_count" ...
1
vote
0answers
110 views

fb_ref parameter missing from timeline links

our software relies on the ref parameter passed to likes and custom actions to track attribution. Since this morning the fb_ref parameter has stopped appearing on like links on the timeline and is ...
0
votes
1answer
153 views

Where can I see fb_ref data?

I have an external page with like button which likes my Facebook page. The like button is an app with app_id and so on. The button is called via <div class="fb-like" ...

1 2 3 4