1
vote
5answers
122 views
Java references
Is there any way to find all references to an object (in Java)?
I have a cache of objects, and would like to periodically scan it to see if removing the object will cause it to be destroyed.
0
votes
5answers
73 views
Reference types in depth
I understand that the semantics of equality checking changes based on whether you are checking value types or rference types. Aren't reference types just a higher level pointer? What exactly is …
1
vote
1answer
48 views
Problem with luabind::object dereferencing (simplified)
Using C++, lua5.1, luabind 0.7
Lua code:
-- allocates near 8Mb of memory
function fff()
local t = {}
for i = 1, 300000 do
table.insert(t, i)
end
return t
end
C++ code:
{
…
8
votes
15answers
595 views
What do I need to know about memory in C++?
I've been doing my best to learn C++ but my previous training will fall short in one major issue: memory management. My primary languages all have automatic garbage collection, so keeping track of …
0
votes
2answers
59 views
PHP Memory Overflow?
Hi all, Im currently building a php framework... again.
I have a class called config.
its pretty simple, its called like so:
$conf = config::get('general');
$conf is now an array full of config …
1
vote
6answers
72 views
Could I get the name of current reference within Java?
public class RefName {
void outRefName() {
System.out.println("the current reference name is" + xxx);
};
};
public static void main(String[] args) {
RefName rf1 = new RefName();
…
0
votes
4answers
24 views
GAC Assembly Missing in Add Reference dialog
I have an Interop assembly lying in GAC; Windows Explorer clearly shows it listed in the C:\WINDOWS\assembly folder. Yet, when I try to add a reference to it in from Visual Studio, I can't see it …
0
votes
1answer
38 views
Resharper says I need to reference a dll, which is already referenced. code compiles ok.
I have a strange problem with resharper.
I have a project file which is modified so that references are made by using an environment variable like so:
<Reference …
0
votes
5answers
123 views
Pass by reference in C
I'm trying to use pass by reference in C so that the function can modify the values of the parameters passed to it. This is the function signature:
int locate(char *name, int &s, int &i)
…
1
vote
3answers
72 views
Recommended PHP6 Books?
Just like the title says, what book(s) would you recommend for learning PHP6?
I know my way around PHP5 pretty well, so I don't need a "beginner" book; just one that explains what's new and maybe …
4
votes
12answers
140 views
Sites for function reference
Hello,
do you use any particular site for function reference or you just google the function?
6
votes
9answers
399 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++ …
82
votes
85answers
8k views
What is your most useful sql trick to avoid writing more code?
I am intending this to be an entry which is a resource for anyone to find out about aspects of sql that they may have not run into yet, so that the ideas can be stolen and used in their own …
1
vote
1answer
37 views
+100
Is there any addon for Visual Studio that enables drag-and-drop references?
I would like to drag a dll to my project references. Is it possible? Is there an plugin for it?
0
votes
6answers
156 views
What’s an efficient algorithm to make one list equal to another one?
Let's say I have a list A that needs to look exactly like list B. All the objects that B has but A does not have need to be added to A. And all the objects that A has but not B, need to be removed …
