0
votes
2answers
55 views
c# .net iterating twice a list in a inner and outer loop - local copy or reference?
Hallo everyone,
i have a list of nodes ListNode and i want to draw a line between two nodes if there is an edge / link between them. My approach so far is:
public void drawGraphI …
2
votes
8answers
158 views
Which one is preferred, return const double& OR return double.
Given the following scenario, which one of the following is preferred.
m_state is a member rater than a local variable.
class C
{
private:
double m_state;
public:
double s …
1
vote
2answers
68 views
C#.NET constructor overload reference problem
Consider a layered application where the DataLayer has a certain class with all the data access stuff in it, and above that the business layer has a class which can take in the con …
0
votes
2answers
112 views
C++ referring to an object being constructed.
In C++ I have a reference to an object that wants to point back to its owner, but I can't set the pointer during the containing class' construction because its not done constructin …
1
vote
3answers
90 views
What is a Ghost Reference?
Hello! I was just wondering what a ghost reference was? Is it that you don't have to refer to a object? EDIT: Sorry, I wasn't clear, the langauge is Java, and I read it about linke …
13
votes
3answers
121 views
Is there a Bug Encyclopedia?
Has anyone developed an encyclopedia or wiki of software bugs, either bug types (off-by-one, buffer overflow, etc.) or even just famous bugs (Grace Hopper's moth, the Arianne rocke …
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 …
1
vote
3answers
33 views
does anyone knows of any site that have a searchable index of unicode symbols
Is there a site that would allow you to search for "arrow", for example, and provide all the Unicode symbols that match the keyword "arrow"?
This would be very handy :)
Ideally, …
0
votes
4answers
47 views
External Reference of a Javascript file in IE
I am working on a website for a teacher,
Since there is a chance she may want to add more later, I decided to make the links that appear on every page be written in by Javascript s …
1
vote
1answer
51 views
How can I force symbol a symbol reference in c++ (programmatically)
Hi,
I'm trying to plug tcmalloc into a suite of software that we currently use at work. The software comprises of a lot of dll's. They all refer to a shared header file, so I can …
0
votes
1answer
63 views
C# object reference
Hello, i don't know what you call it, but how would i change fields / use methods from an object, with the object i want to call with, a field?
0
votes
7answers
132 views
std::map, references, pointers and memory allocation
I am having a lil hard time with map and the valuetype allocation.
consider this simple class:
class Column {
private:
char *m_Name;
public:
// Overrides
const char * …
11
votes
11answers
324 views
C# .NET String object is really by reference?
Hi,
I have being studying (newbie) .NET and I got some doubts.
Reading from a book examples I learnt that String are object then Reference Type.
So, I did this test and the res …
6
votes
8answers
355 views
Why there is no OFFICIAL JavaScript reference?
I tried to search for one, but there's none available. The best 2 suggested sources are MDC and W3Schools.
Anybody happens to know why? Thank you so much!
0
votes
4answers
35 views
call time reference issue with php
function get_arr($arr)
{
unset($arr[0]);
}
$arr1 = array(1,2);
$arr2 = array(1,2);
get_arr(&$arr1);
get_arr($arr2);
echo count($arr1);
echo count($arr2);
I got :
War …
