Tagged Questions
The reference tag has no wiki summary.
207
votes
1answer
6k views
Reference - What does this symbol mean in PHP?
What is this?
This is a collection of questions that come up every now and then about syntax in PHP. This is also a Community Wiki, so everyone is invited to participate in maintaining this list.
...
150
votes
26answers
29k views
Good JavaScript Books? [closed]
I find myself using Javascript day to day without a solid understanding of the language. There are some great writeups out there about using specific features of the language, but I'd like a ...
139
votes
11answers
51k views
Python: How do I pass a variable by reference?
The Python documentation seems unclear about whether parameters are passed by reference or value, and the following code produces the unchanged value 'Original'
class PassByReference:
def ...
136
votes
86answers
18k views
What is your most useful SQL trick to avoid writing more code? [closed]
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 ...
73
votes
3answers
15k views
What is the difference between a soft reference and a weak reference in Java?
The title pretty much sums it.
68
votes
3answers
3k views
Why doesn't C# support the return of references?
I have read that .NET supports return of references, but C# doesn't. Is there a special reason?
64
votes
3answers
2k views
Strange behaviour after loop by reference - Is this a PHP bug?
I just had some very strange behavior with a simple php script I was writing. I reduced it to the minimum necessary to recreate the bug:
<?php
$arr = array("foo",
"bar",
...
41
votes
31answers
4k views
Handy F# snippets
There are already two questions about F#/functional snippets.
However what I'm looking for here are useful snippets, little 'helper' functions that are reusable. Or obscure but nifty patterns that ...
38
votes
5answers
2k views
Why 'this' is a pointer and not a reference?
I was reading the answers to this question C++ pros and cons and got this doubt while reading the comments. Why the this is a pointer a not a reference ? Any particular reason for making it a pointer?
...
31
votes
12answers
11k views
Pointer vs. Reference
What would be better practice when giving a function the original variable to work with:
unsigned long x = 4;
void func1(unsigned long& val) {
val = 5;
}
func(x);
or:
void func2(unsigned ...
28
votes
7answers
19k views
26
votes
8answers
4k views
How come a non-const reference cannot bind to a temporary object?
Why is it not allowed to get non-const reference to a temporary object,
which function getx() returns? Clearly, this is prohibited by C++ Standard
but I am interested in the purpose of such ...
25
votes
15answers
4k views
What's on your C++ cheatsheet?
Every so often, I'll have to switch between languages for the majority of the code I write (whether for work or for play). I find that C++ is one of those languages that requires a lot of mental ...
24
votes
7answers
713 views
how to “return an object” in C++
I know the title sounds familiar as there are many similar questions, but I'm asking for a different aspect of the problem (I know the difference between having things on the stack and putting them on ...
23
votes
7answers
4k views
How do databases work internally?
I've been working with databases for the last few years and I'd like to think that I've gotten fairly competent with using them. However I was reading recently about Joel's Law of Leaky Abstractions ...
21
votes
11answers
2k views
Why is there no OFFICIAL JavaScript reference?
I tried to search for a JavaScript reference, but there's none available. The best two suggested sources are MDC and W3Schools.
Why?
20
votes
5answers
8k views
C# string reference type?
I know that "string" in C# is a reference type. This is on MSDN. However, this code doesn't work as it should then:
class Test
{
public static void Main()
{
string test = "before ...
20
votes
10answers
2k views
Best reference sites for HTML and JavaScript programming
Best reference sites for HTML and JavaScript programming:
SitePoint: DOM JavaScript, HTML, CSS -- Search
W3schools: DOM, JavaScript, HTML, CSS, XML, Multimedia, Server-side
Mozilla Dev Center: DOM, ...
19
votes
1answer
161 views
Is it safe to bind a reference to a not yet constructed object in C++?
Consider this code sample:
class Base {
public:
Base( string& _object ) : object( _object ) {}
private:
string& object;
};
class Derived: public Base {
public:
Derived() : Base( ...
18
votes
2answers
663 views
Sources on S4 objects, methods and programming in R
As I'm often confronted with situations where S4 programming is needed to keep an overview, I've collected quite some sources on S4 objects, methods and programming. I've listed them here as a ...
18
votes
11answers
1k views
The Community-Driven GDB Primer
I was reading this question and realized it might be helpful for entry- and pro-level developers alike (including myself) to have a common reference for best practices in using gdb.
Many questions ...
18
votes
10answers
4k views
When should I use the new keyword in C++?
I've been using C++ for a short while, and I've been wondering about the new keyword. Simply, should I be using it, or not?
1) With the new keyword...
MyClass* myClass = new MyClass();
...
18
votes
11answers
5k views
What are some of the pros and cons of using jQuery?
As someone who is only barely proficient in javascript, is jQuery right for me? Is there a better library to use? I've seen lots of posts related to jQuery and it seems to be the most effective way ...
17
votes
1answer
3k views
ASP.net page gets error on import statement, but I do have the reference in place?
Any ideas why I am getting the below error in my MVC2 project, even through in the project itself I definitely have a reference to "system.Web.Entity"?
Compiler Error Message: CS0234: The type or ...
17
votes
3answers
202 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 rocket failure, etc.)?
I ...
16
votes
2answers
2k views
Visual Studio - Attach Source Code to Reference
My C# project references a third-party DLL for which I have the source code. Can I somehow tell Visual Studio the location of that source code, so that, for example, when I press F12 to open the ...
15
votes
5answers
961 views
int vs const int&
I've noticed that I usually use constant references as return values or arguments. I think the reason is that it works almost the same as using non-reference in the code. But it definitely takes more ...
15
votes
5answers
705 views
Why has Python decided against constant references?
Note: I'm not talking about preventing the rebinding of a variable. I'm talking about preventing the modification of the memory that the variable refers to, and of any memory that can be reached from ...
15
votes
3answers
7k views
Android - reference a string in a string array resource with xml
I have been unable to find a solution for this.
What I'm trying to do: I have preferences where you can enable/disable what items will show up on the menu. There are 17 items. I made a string array ...
15
votes
7answers
2k views
How does the Windows Command Interpreter (CMD.EXE) parse scripts?
I ran into ss64.com which provides good help regarding how to write batch scripts that the Windows Command Interpreter will run.
However, I have been unable to find a good explanation of the grammar ...
15
votes
9answers
6k views
Should Java method arguments be used to return multiple values?
Since arguments sent to a method in Java point to the original data structures in the caller method, did its designers intend for them to used for returning multiple values, as is the norm in other ...
15
votes
6answers
2k views
C++ strings: [] vs. *
Been thinking, what's the difference between declaring a variable with [] or * ? The way I see it:
char *str = new char[100];
char str2[] = "Hi world!";
.. should be the main difference, though Im ...
15
votes
4answers
3k views
Passing Reference types by value in C#
I want to pass a reference type by value to a method in C#. Is there a way to do it.
In C++, I could always rely on the copy constructor to come into play if I wanted to pass by Value. Is there any ...
13
votes
7answers
323 views
Is this a valid function?
What happens to the reference in function parameter, if it gets destroyed when the function returns, then how const int *i is still a valid pointer?
const int* func(const int &x = 5)
{
return ...
13
votes
3answers
795 views
Windows Visual Themes: Gallery of Parts and States?
Microsoft Windows lets programmers draw GUI elements using the look and feel of the current theme using functions like DrawThemeBackground and DrawThemeText. The elements are specified by Class, Part, ...
13
votes
11answers
1k views
C++ difference between reference, objects and pointers
This is a question from an exam in an advanced course in OOP, taught in C++ (in TAU university, this semester):
Q: What is the difference between a C++ pointer and a reference?
A. A reference ...
13
votes
8answers
851 views
Where to find algorithms for standard math functions?
I'm looking to submit a patch to the D programming language standard library that will allow much of std.math to be evaluated at compile time using the compile-time function evaluation facilities of ...
13
votes
2answers
3k views
Javascript reference for offline browsing
I am going offline for a few days, and would like to bring the javascript documentation with me on my laptop :)
Does anyone know of a place where I can get downloadable reference documentation for ...
12
votes
4answers
272 views
C++ return type when I don't know if it's temporary
Suppose that Foo is a rather large data structure. How should I write a const virtual function that returns an instance of Foo, if I don't know whether the inherited classes will store the instance of ...
12
votes
2answers
373 views
Good reference for Roxygen?
Other than the excellent SO answer here, and the Roxygen manual and vignette, is there any particularly thorough guide to using Roxygen?
12
votes
9answers
7k views
Pass by reference problem with PHP 5.3.1
Ok, this is a weird problem, so please bear with me as I explain.
We upgraded our dev servers from PHP 5.2.5 to 5.3.1.
Loading up our code after the switch, we start getting errors like:
Warning: ...
12
votes
10answers
885 views
C# .NET String object is really by reference?
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 result was different what I ...
12
votes
8answers
14k views
Generic tree implementation in Java
Is anyone aware of a generic tree (nodes may have multiple children) implementation for Java? It should come from a well trusted source and must be fully tested.
It just doesn't seem right ...
12
votes
2answers
2k views
WeakReference implementation in .NET
I understand and appreciate the usefulness of the System.WeakReference class in the .NET framework, but am curious as to the implementation details.
How is WeakReference implemented in .NET? MSDN ...
12
votes
8answers
3k views
A good Javascript API reference documentation related to browsers and DOM
I am looking for a good API documentation for Javascript especially related to browsers and DOM. I am not looking for any kind of Javascript tutorial, but simply a documentation for all standard ...
12
votes
9answers
816 views
What is 'the' definitive book on Unit Testing?
I would consider myself fairly well versed in the concepts of Unit Testing. I am curious though if there is a publication that is considered the definitive book on Unit Testing.
This would be along ...
11
votes
3answers
206 views
Is it true that Java implicitly defines references to the objects used in classes?
After reading the books, surfing the nets regarding the type of references in Java, I still have some doubts (or I may have interpreted the concept wrong).
It would be a great help for me if anyone ...
11
votes
2answers
312 views
Lifetime of temporary bound to aggregate initialized struct member
Given the following code:
class foo
{
};
class bar: public foo
{
public:
~bar() { printf("~bar()\n"); }
};
class zab: public foo
{
public:
~zab() { printf("~zab()\n"); }
};
struct ...
11
votes
7answers
845 views
Online HTML/CSS/Javascript learning reference alternative to w3schools?
From my time on SO I've found w3schools may not be the best place to send people as an html/web programming reference. I started using them a loooong time ago and have been sending people there for ...
11
votes
3answers
3k views
Namespace not recognized (even though it is there)
I am getting this error:
The type or namespace name 'AutoMapper' could not be found (are you missing a using directive or an assembly reference?)
The funny thing is that I have that reference in ...