Tagged Questions

149
votes
61answers
9k views

What are the best RSS feeds for programmers/developers?

I am looking for a breakdown of some really good RSS feeds. I have quite a few subscriptions with Google Reader, but lack many very good development/programming feeds. Would love …
43
votes
21answers
6k 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 makin …
35
votes
16answers
9k views

Difference 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 …
17
votes
7answers
750 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!) …
15
votes
22answers
2k 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 po …
14
votes
6answers
2k 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 pr …
13
votes
5answers
21k views

The located assembly’s manifest definition does not match the assembly reference

I am trying to run some unit tests in a C# winforms application (VS 2005) and I get the following error: System.IO.FileLoadException: Could not load file or assembly 'Utility, Ver …
12
votes
2answers
377 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 …
12
votes
7answers
749 views

Multithreading reference?

I am asking about a good reference for multithreading programming in terms of concepts with good examples using C++/C#?
10
votes
9answers
428 views

What’s the Difference Between func(int &param) 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 a …
9
votes
9answers
1k 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 th …
7
votes
6answers
387 views

How does a C++ reference look, memory-wise?

Given: int i = 42; int j = 43; int k = 44; By looking at the variables addresses we know that each one takes up 4 bytes (on most platforms). However, considering: int i = 42; …
7
votes
6answers
104 views

Reference sheets

I needed sheets for quick references particular language syntax. I have found this that might help Any other suggestions?
7
votes
5answers
454 views

I understand threading in theory but not in practice in .net

I have a basic cs-major understanding of multi-threading but have never had to do anything beyond simple timers in an application. Does anyone know of a good resource that will giv …
6
votes
4answers
238 views

Could someone please explain the difference between a “reference” and a “pointer” in this case?

When I read litb answer to this question, I learned that passing an array by reference allows us to obtain its size. I just played little bit with code, and tried to pass a "functi …

1 2 3 4 5 16 next
15 30 50 per page