A reference is a value that enables a program to indirectly access a particular datum, such as a variable or a record, in the computer's memory or in some other storage device.

learn more… | top users | synonyms (2)

3
votes
1answer
36 views

Assigning values to a referenced instance

I am an intermediate Java beginner and also completely new to stack overflow. (This is my first post.) I have a question about the following code and the assignment of values to a reference. First, ...
-2
votes
0answers
21 views

How to merge objects in javascript and still have the reference

I'm quite new in web developing, and i'm struggling here with a problem. I have 2 objects instances a & b from 2 different types A and B. I want that instance b will contain instance a and still ...
6
votes
3answers
51 views

Storing elements of one list, in another list - by reference - in Python?

I just thought I'd jot this down now that I've seen it - it would be nice to get a confirmation on this behavior; I did see Python: How do I pass a variable by reference?, but I'm not sure how to ...
0
votes
1answer
8 views

Linker error undefined reference to… an included library in c

I've searched a lot for this but i can't really figure this out. My project consists of 5 .c files and 4 .h headers. all in the same folder. I compile them separately succesfully but when it comes to ...
0
votes
0answers
6 views

Checkbox Reference Value in LibreOffice Base Form

I want to make a checkbox in the form editor of Base to fill boolean values (in this case, "Male", and "Female") in my table. I am currently stuck in the checkbox control window's "Data" tab because ...
0
votes
1answer
79 views

Return reference to stl vector

Im building a small C++ program and I'm implementing custom operators in a class. Also I'm working with STL vectors. However I'm stuck at the beginning. Here's my interface class: class test { ...
1
vote
4answers
41 views

operator++(int) overload with abstract base class and Wall

I am currently creating a set of iterators which will differ in implementation detail, but will be used in the same algorithms. For this reason, they must all have the same interface. To achieve this, ...
-2
votes
3answers
58 views

How do I pass a pointer to a structure without angering the compiler?

I'm attempting to compile a simple C++ program using MinGW 4.7.2, but am frustrated by a deluge of errors and warnings. /*\ program.h \*/ typedef struct { int member0; int member1; int ...
2
votes
3answers
59 views

PHP: Detecting when a variables value has been changed

I was wondering if there is a way to add something like a change listener to a variable. The simplest example of what I mean would work something along these lines; // Start with a variable $variable ...
0
votes
2answers
18 views

Cannot Display paragraph preview in pop-up window

I have a problem displaying text from a tag to a pop-up, I am experiencing reference errors, I can refer to the p tag until I show the p tag using my .click function, I just need help taking the ...
1
vote
1answer
23 views

Is it possible to attach an action to a boost::spirit::rule parser which assigns the parsed result to a member of a (yet) unknown instance?

I'm trying to reference a member of a (yet) unknown instance from within a boost::spirit rule definitions' action, so in pseudocode, instead of double_[ref(rN) = _1] I'm looking for something ...
3
votes
3answers
46 views

Pointer passing to function header

I have another problem regarding pointers. I have a function with the following header: addActor (NxuPhysicsCollection &c, NxActor &a, const char *userProperties=0, const char *actorId=0) ...
1
vote
1answer
39 views

Flash Error #1009: Cannot access a property or method of a null object reference …?

I have a problem when I create a menu with flash as3. Can you guys help what should I do ...? Like this : TypeError: Error #1009: Cannot access a property or method of a null object reference. at ...
0
votes
0answers
9 views

Google Scholar or Pubmed automatic referencing

Is there a way to have an automated systems, possibly JavaScript, to allow for automatic referencing from Google Scholar and/or Pubmed based on an author name? So, whenever a new journal goes up, it ...
0
votes
5answers
83 views

Singleton destructor called error [duplicate]

#pragma once #include <time.h> class CTimer { time_t _last; CTimer() { _last = time( NULL ); } CTimer(const CTimer &); CTimer& operator=(const CTimer&); ...
0
votes
1answer
14 views

How to set up basic WCF service - client application?

I am new to WCF and I try to create my first WCF service - client application. I use Visual Studio 2010. I create WCF Service application I try to add service reference to my another project. After ...
0
votes
4answers
159 views

C++: better to keep reference or pointer? [closed]

This might be regarded as a style question. I have a class that keeps a reference to an instance of another class: class A { }; class B { A& ref; public: explicit B(A& ref) : A(ref) { } ...
1
vote
2answers
25 views

AutoMapper, how to keep references between mapped objects?

I am using AutoMapper to convert a UI model to POCOs that I later serialize to XML using a DataContractSerializer in order to preserve the references between them. The problem comes that, when ...
16
votes
2answers
250 views

Playing with references

I can see why $a = new ArrayObject(); $a['ID'] = 42; $b = &$a['ID']; $c = $a; $c['ID'] = 37; echo $a['ID']."\n"; echo $b."\n"; echo $c['ID']."\n"; outputs 37, 42, 37 while $a = new ...
1
vote
0answers
12 views

Correct usage of DeletLocalRef in JNI

Here is the sample jni method where I create a string and return it to the calling java method: jstring Java_com_example_hellojni_HelloJni_stringFromJNI( JNIEnv* env, ...
0
votes
1answer
23 views

JQuery: Access all Select Tags that of of type multiple

I have $("body select").method() to apply the method on all select tags. How can I specify multiselect or single select with jquery? I am looking into something like $("body select[multiple='single'") ...
0
votes
1answer
53 views

Can't find “this” class NoClassDefFoundError - Android

I'm trying very simply to test the 3.0 Facebook get started guide. https://developers.facebook.com/docs/getting-started/facebook-sdk-for-android/3.0/ I have had some problems with imports and ...
1
vote
0answers
70 views

Do circular references in C# cause memory leaks? [duplicate]

I have a collection of data models that have associations with other models, and the data schema is often circular in nature. I want to create C# classes to represent this data objects, but it'll ...
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
9 views

How to have java files been exported to local system in android & have it as referenced libraries?

I would like to have the java files in my local system then use it reference to the android app instead of having them inside it.How can I achieve it,please guide me with your experience on ...
3
votes
3answers
36 views

Changing reference for one object and it changes for all in the collection

I have created class Person which is member of class Account and then there is class Bank which contains vector of Accounts. I have created one Person who ownes 3 Accounts then I wanted to ...
2
votes
5answers
56 views

Using a collection reference as an if statement condition without a comparison?

I'm a little embarrassed to be asking this because I'm sure this is a very basic question but having searched and thought about it I still can't work this out. The code is from a class the tutor ...
1
vote
1answer
28 views

Can I use a .net 4.0 dll assembly reference in a .net 3.5 sharepoint web part?

I am using some dll's from the crm 2011 sdk in a .NET 3.5 web part.The target is for SharePoint 2010 online. When I try to build it gives me the following error: The primary reference ...
-3
votes
1answer
61 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
1
vote
1answer
51 views

Releasing COM objects in .NET from within enumerations and other reference scenarios

I have a WinForms application that uses COM Interop to connect to Microsoft Office applications. I have read a great deal of material regarding how to properly dispose of COM objects and here is ...
0
votes
1answer
32 views

undefined reference to `strcpy_s' can't compile

i follow the book and can't compile this example. Any suggestions? Thank you in advance. 1 #define __STDC_WANT_LIB_EXT1__ 1 2 #include <string.h> 3 #include <stdio.h> 4 5 6 ...
0
votes
1answer
81 views

Referencing the values in pointers to arrays (c)

Note: Fixed (decription at bottom) For some reason the following code: (*p_to_array)[m_p->number_of_match_positions] = (*p_to_temp_array)[k]; where the types are: match_pos_t (*p_to_array)[]; ...
4
votes
2answers
46 views

Can I get to the object of a property if I have a reference to the property only?

I have the reference to a property of an object in a variable,is it possible to access the object to which this property belongs?
0
votes
2answers
67 views

C# (Visual Studio 2010) not finding an included reference

I'm trying to write code for forms without using MS Designer. When I compile, I'm consistently getting the same errors: The type System.ComponentModel.* is defined in an assembly that is not ...
0
votes
0answers
16 views

Two TFS Projects - Making one project reference another within source control

I have two projects. Project1 - A project within TFS that I wish to keep up to date that I want to make available for other applications to use. Project2 - My first application that will need to ...
0
votes
1answer
26 views

How can I pass a “global” pointer to a SDL_Surface to a render-function of a class in C++?

My following problem is related to my previous question here. I want to pass a "global" screen to a render-function of a class. screen has to be a pointer to a SDL_Surface, because the initial ...
0
votes
2answers
49 views

Passing an address to a class and from there to its “child-class” by reference in C++

"pointer" holds the address of "Int". I want to pass that address to my given classes by reference: class N { public: N(int &pPointer){ std::cout << "Address: " << ...
-1
votes
1answer
47 views

difference between & and * declaration [duplicate]

To elaborate the title, what is the difference between book& a = b; and book* a = &b; After learning C, these class declaration is really confusing me. Can anyone explain how these two ...
0
votes
0answers
50 views

should I return a pointer or a reference in C++ functions and classes? [duplicate]

What are the pros and cons of each, which is done under what circumstances? Returning a reference or a pointer appears quite similar, I don't know which should really be done.
1
vote
1answer
29 views

Referencing an object property with numeric value in JavaScript

I've run into a - what seems - somewhat strange problem. Let's say I have a JavaScript object like this one: var Object = { Property1: 0, Property2: 1, TxtProperty: "Sample text", ...
5
votes
1answer
90 views

understanding a csproj assembly reference

I am using VS2010 and I tried to add a few assembly from local hard disk to my C# project through file reference. Peeking into the csproj file. I found sometimes the file reference appears as ...
2
votes
4answers
77 views

Is there one rule or priority to choose value/pointer/reference?

how to choose value or pointer or reference? when I code in c++, I don't have a clean idea when to choose each one? Is there one priority or rule when choosing?
2
votes
4answers
59 views

C++ polymorphism with references

I've been writing some classes in C++ that operate on files. When I started, I made all my constructors accept one std::string argument that was interpreted as a filename, because that was quick and ...
-3
votes
0answers
25 views

Rewriting code to make Pixel gotten using getPixel(2,3) [closed]

A 201 beginner coded into the main method: public static void main(string[] a) { new Picture(FileChooser.pickAFile(); //more code tried... } REWRITE this below to make the Pixel gotten ...
-1
votes
2answers
42 views

Java: methods appears to be passing by reference [duplicate]

I have always understood Java to pass parameters by value. I have some code that I cannot seem to debug. Here's a simplified version: private isFinished = false; private int target, count; public ...
3
votes
4answers
81 views

References objects in Java [duplicate]

I have a doubt about object references in Java. It always send its object by reference to the functions, and it means that if you modifie them in the function sent, they will come back modified. A ...
0
votes
2answers
32 views

dynamic reference to javascript file

I have a master page with a reference to javascript file that is js folder. Both File and masterpage are in the root directory. Many of my forms are in different folders Like ...
2
votes
1answer
51 views

Visual Studio Project: How to include a project reference based on some DefineConstants value?

For user authorization, I only want to include specific module for each user, that is why I create Conditional Compilation like this: ...
0
votes
1answer
62 views

Insert data into nested table

May I please have some help to Insert values into a table. The table is called PurchaseOrder_objtab. Here is the type for the table: CREATE TYPE PurchaseOrder_objtyp AUTHID CURRENT_USER AS OBJECT ( ...
0
votes
1answer
36 views

undefined reference to function from log4cpp library

I have another problem ... I downloaded the log4cpp library and compiled it via Microsoft Visual Studio into a .lib-file. Now I want to link that library into a QT Project, but whenever I call a ...

1 2 3 4 5 113