Tagged Questions
A reference is a value that enables a program to indirectly access a particular data item, such as a variable or a record, in the computer's memory or in some other storage device. The reference is said to refer to the data item, and accessing that data is called dereferencing.
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 ...
163
votes
21answers
78k views
What are the differences between pointer variable and reference variable in C++?
I know references are syntactic sugar, so easier code to read and write :)
But what are the differences?
Summary from answers and links below:
A pointer can be re-assigned any number of times ...
69
votes
12answers
126k views
The located assembly's manifest definition does not match the assembly reference
I am trying to run some unit tests in a C# Windows Forms application (Visual Studio 2005) and I get the following error:
System.IO.FileLoadException: Could not load file or assembly 'Utility, ...
56
votes
8answers
12k views
Remove unused references (!= “using”)
How can I find and delete unused references in my projects?
I know you can easily remove the using statements in vs 2008, but this doesn't remove the actual reference in your projects. The ...
35
votes
12answers
3k views
Is there a difference between `==` and `is` in python?
My Google-fu has failed me.
In Python, are these:
n = 5
# Test one.
if n == 5:
print 'Yay!'
# Test two.
if n is 5:
print 'Yay!'
two tests for equality equivalent (ha!)? Does this hold ...
29
votes
6answers
1k views
C++: When to use References vs. Pointers
I understand the syntax and general semantics of pointers versus references, what I can't decide is when is it more-or-less appropriate to use references or pointers in an API?
Naturally some ...
27
votes
4answers
1k views
Symptoms and alternatives to overused OOP
Lately I am losing my trust in OOP. I have already seen many
complaints about common OOP misuses or just simple overuse. I do not
mean the common confusion between is-a and has-a ...
21
votes
3answers
1k views
Can someone explain the difference between Strong, Soft, Weak and Phantom references and the usage of it?
I have been trying to understand the difference between different references but the theory does not provoke any ideas for me to visualize the same.
Could anyone please explain in brief the different ...
21
votes
2answers
1k views
CLSCompliant(true) drags in unused references
Can anyone explain the following behavior?
In summary, if you create multiple CLS compliant libraries in Visual Studio 2008 and have them share a common namespace root, a library referencing another ...
21
votes
2answers
5k views
Weak references
can someone explain the main benefits of different types of references in C#, weak references, soft references, phantom references, strong references.
We have an application that is consuming a lot ...
21
votes
21answers
3k views
What is the real difference between Pointers and References?
AKA - What's this obsession with pointers?
Having only really used modern, object oriented languages like ActionScript, Java and C#, I don't really understand the importance of pointers and what you ...
19
votes
3answers
2k views
Understanding Java's Reference classes: SoftReference, WeakReference, and PhantomReference
Can someone explain the difference between the three Reference classes (or post a link to a nice explanation)? SoftReference > WeakReference > PhantomReference, but when would I use each one? Why is ...
17
votes
4answers
11k views
the type or namespace name could not be found
I have a C# solution composed of several projects in Visual Studio 2010.
One is a "Test" project (I'll call it "PrjTest"), the other is a Windows Forms Application project (I'll call it "PrjForm"). ...
17
votes
7answers
2k views
Multithreading reference?
I am asking about a good reference for multithreading programming in terms of concepts
with good examples using C++/C#?
17
votes
4answers
3k views
C#: How to reference generic classes and methods in xml documentation
When writing xml documentation you can use <see cref="something">something</see>, which works of course. But how do you reference a class or a method with generic types?
public class ...
16
votes
2answers
184 views
Am I right in saying that const_cast followed by modification on a ref-to-const bound to a temporary is okay?
I would like to check my understanding and conclusions on this matter.
On IRC, it was asked:
Is it acceptable to const_cast a const reference that's bound to a temporary object?
Translating: ...
15
votes
9answers
4k views
What is the difference between a C# Reference and a Pointer?
Sorry for such a newbie question but there is something I do not quite understand the difference between a C# reference and a pointer. They both point to a place in memory don't they? The only ...
14
votes
7answers
2k views
Difference between pointer to a reference and reference to a pointer
What is the difference between pointer to a reference, reference to a pointer and pointer to a pointer in C++?
Where should one be preferred over the other?
13
votes
1answer
301 views
Uniform initialization of references
I am currently trying to understand the new uniform initialization of C++0x. Unfortunately, I stumpled over using uniform initialization of references. Example:
int main() {
int a;
int ...
13
votes
3answers
340 views
Overload resolution and arrays: which function should be called?
Consider the following program:
#include <cstddef>
#include <cstdio>
void f(char const*&&) { std::puts("char const*&&"); } // (1)
void f(char const* const&) ...
13
votes
1answer
2k views
Referenced Project gets “lost” at Compile Time
I have a C# solution with two projects: a service (the main project) and a logger. The service uses classes from the logger. I've added a Reference to the logger project within the service project. At ...
13
votes
11answers
2k views
Which is better, return value or out parameter?
If we want to get a value from a method, we can use either return value, like this:
public int GetValue();
or:
public void GetValue(out int x);
I don't really understand the differences between ...
12
votes
1answer
398 views
Is writing a reference atomic on 64bit VMs
The java memory model mandates that writing a int is atomic: That is, if you write a value to it (consisting of 4 bytes) in one thread and read it in another, you will get all bytes or none, but never ...
12
votes
2answers
5k views
What use is the Aliases property of assembly references in Visual Studio 8
When I add an assembly reference to a project in Visual Studio 8 the Aliases property, of that reference, is set to "global". What is this property good for and why is it set to global?
MSDN tells ...
11
votes
2answers
101 views
ArrayAccess in PHP — assigning to offset by reference
First, a quote from the ole' manual on ArrayAccess::offsetSet():
This function is not called in assignments by reference and otherwise indirect changes to array dimensions overloaded with ...
11
votes
13answers
2k views
C# - Excluding unit tests from the release version of your project
How do you usually go about separating your codebase and associated unit tests? I know people who create a separate project for unit tests, which I personally find confusing and difficult to maintain. ...
10
votes
5answers
97 views
Java: Enforcing doubly linked objects
I am designing a game engine in Java.
At the core of this engine exist the two classes Asset and Attribute, where an Asset has a list of Attributes. Most Attributes need no link back up to their ...
10
votes
5answers
460 views
If == compares references in Java, why does it evaluate to true with these Strings?
As it is stated the == operator compares object references to check if they are referring to the same object on a heap. If so why am I getting the "Equal" for this piece of code?
public class Salmon ...
10
votes
2answers
1k views
C# - Referencing a type in a dynamically generated assembly
I'm trying to figure out if it's possible when you are dynamically generating assemblies, to reference a type in a previously dynamically generated assembly.
For example:
using System;
using ...
10
votes
5answers
1k views
C# project reference's question
I have a c# solution and its composed of numerous projects.
I have a project that is my baseassemblies that holds all common information that other projects use. All of the other projects have ...
10
votes
6answers
3k views
Are there gotchas using varargs with reference parameters
I have this piece of code (summarized)...
AnsiString working(AnsiString format,...)
{
va_list argptr;
AnsiString buff;
va_start(argptr, format);
buff.vprintf(format.c_str(), argptr);
...
10
votes
9answers
658 views
What's the Difference Between func(int ¶m) and func(int *param)?
In the following code, both amp_swap() and star_swap() seems to be doing the same thing. So why will someone prefer to use one over the other? Which one is the preferred notation and why? Or is it ...
9
votes
2answers
298 views
Why do g++ and MS Visual Studio C++ execute the following code differently?
I am having trouble understanding which complier is at fault here (if any). The following code is exectued differently of g++ compared with MS Visual Studio C++.
#include <iostream>
int main() ...
9
votes
1answer
770 views
How to get javascript object references or reference count?
How to get reference count for an object
Is it possible to determine if a javascript object has multiple references to it?
Or if it has references besides the one I'm accessing it with?
Or even ...
9
votes
1answer
494 views
Errors in c++ faq lite?
I'm reading questions and answers around here for a few days.
I have seen the c++ faq lite at Parashift has been mentioned many times. Personally I have always considered it to be a good reference, ...
9
votes
4answers
2k views
Using different versions of the same assembly in the same folder
I have the following situation
Project A
- Uses Castle Windsor v2.2
- Uses Project B via WindsorContainer
Project B
- Uses NHibernate
- Uses Castle Windsor v2.1
In the bin folder of ...
9
votes
4answers
495 views
C++: why can't we have references to references or array of references?
I noticed that there is no reference to reference but there is pointer to pointer, and also there is no an array of references but an array of pointers.
Could anybody give me any reason?
9
votes
4answers
331 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I have in mind are ...
9
votes
9answers
6k views
Is the practice of returning a C++ reference variable, evil?
This is a little subjective I think; I'm not sure if the opinion will be unanimous (I've seen a lot of code snippets where references are returned).
According to a comment toward this question I just ...
8
votes
2answers
252 views
How to load external resources using a reference URI in Java XML
I am trying to extract an XML node from a URI reference. This URI reference is generated by an XAdES4j signer, and could reference a node within the same XML file, or in the same folder.
I was hoping ...
8
votes
4answers
293 views
Why is *&x not the same as x?
Short version:
The following code doesn't compile:
CComBSTR temp;
CMenu().GetMenuString(0, temp, 0);
but this does:
CComBSTR temp;
CMenu().GetMenuString(0, *&temp, 0);
Why?
Full code:
...
8
votes
2answers
159 views
Prevent temporary from extending its lifetime?
This may be impossible, but I was wondering if it was possible to keep a temporary from ever lasting past its original expression. I have a chain of objects which point to parent objects, and a member ...
8
votes
8answers
335 views
Why String is Value type although it is a class not a struct?
Take the following example:
string me = "Ibraheem";
string copy = me;
me = "Empty";
Console.WriteLine(me);
Console.WriteLine(copy);
The output is:
Empty
Ibraheem
Since it is class type (i.e. not ...
8
votes
2answers
110 views
Declaring a reference to object and the assignment operator
I feel like this question is basic enough to be out there somewhere, but I can't seem to be able to find an answer for it.
Suppose I have this code:
//class member function
std::map< std::string, ...
8
votes
4answers
347 views
Casting an object to a reference?
I've been reading some OSS code lately and stumbled upon this peculiar piece:
class Foo { ..... };
void bar() {
Foo x;
Foo *y=new Foo();
x=(const Foo &) *y;
}
For the life of me I ...
8
votes
7answers
308 views
Learning C++: returning references AND getting around slicing
I'm having a devil of a time understanding references. Consider the following code:
class Animal
{
public:
virtual void makeSound() {cout << "rawr" << endl;}
};
class Dog : public ...
8
votes
4answers
233 views
C++ const lvalue references
Assuming I have:
class A which is non-copyable
class B which has as a member, const A& a (and takes an A in its constructer and sets it in its initialization list)
a function A GenerateA();
...
8
votes
7answers
389 views
when is the right time to use *, & or const in C++
hi i was studying pointers references and came across different ways to feed in parameters. Can someone explain what each one actually means?
I think the first one is simple, its that x is a copy of ...
8
votes
7answers
596 views
Is it wrong to dereference a pointer to get a reference?
I'd much prefer to use references everywhere but the moment you use an STL container you have to use pointers unless you really want to pass complex types by value. And I feel dirty converting back to ...
8
votes
1answer
198 views
Why was the definition of a variable changed in the latest C++0x draft?
n3035 says:
A variable is introduced by the declaration of an object. The variable's name denotes the object.
n3090 says:
A variable is introduced by the declaration of a reference other ...