1
vote
2answers
37 views
invalid initialization of non-const reference of type ‘int&’ from a temporary of type ‘MyClass<int>::iterator*’
I'm getting the following error from g++ while trying to add iterator support for my linked list class.
LinkedList.hpp: In member function ‘Type& exscape::LinkedList::iterator …
0
votes
1answer
11 views
How to cycle through xcode windows (or open ‘help’ within the bottom pane)?
Hi. I'm using a MBP...
In Xcode 3.2 the help/reference pops up in a new window when I ALT, CMD, DOUBLECLICK on a class name**. In previous versions it looks like it used to open u …
6
votes
8answers
202 views
How to keep up to date on available Java libraries?
I've been writing java.io code verbosely for far too long, and stumbled onto Apache Commons IO last week. I've used a lot of Commons before, but never looked at IO, and now I feel …
5
votes
9answers
182 views
+100
ANSI SQL Manual
Can anyone recommend a good ANSI SQL reference manual?
I don't necessary mean a tutorial but a proper reference document to lookup when you need either a basic or more in-depth e …
0
votes
5answers
201 views
Dos and Don’ts while using references in Java
What are the dos and don'ts while using references in Java?
2
votes
2answers
32 views
php5: does the ‘copy’ of an array for a foreach incur overhead?
Is the 'copy' of an array for a foreach (of php5, in this case) an immediate copy with actual overhead, or merely a lazy copy (copy on write) which only produces overhead if it det …
1
vote
2answers
33 views
Good reference site for SQL/RDBMS
One of the aspects of computer science/practical software engineering I am weaker at is actually doing significant work in database systems. That is to say, I can do simple queries …
1
vote
2answers
48 views
Reference two equal assemblies, only public keys differ
My Visual Studio 2008 project references two (external) assemblies (A+B) both of which happen to be referencing the same third assembly (C). However, assembly A expects assembly C …
0
votes
1answer
13 views
Prevent a specific assembly from being added to my factory project?
I've created a factory assembly that can process any type of transaction (that supports ITransactionType). I can add more transaction types in separate assemblies, all of which wi …
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
7answers
94 views
How to pass an object to a class so that when the object updates outside the class, it outdates in it too? (Java)
I'm having a hard time figuring out how to pass by reference in Java. I currently have a class as follows
class Example {
ArrayList<Foo> list;
Bar hello;
Exampl …
1
vote
4answers
126 views
C++: difference between reference and const conreference as function parameter?
Here is a simple snippet of C++ code
A foo(){
A a; // create a local A object
return a;
}
void bar(const A & a_r){
}
bar(foo());
Why does the argument of function bar h …
9
votes
10answers
448 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!
1
vote
4answers
159 views
Delphi printing primer
I need to add printing capabilities to an app and I have been looking around for information about printing. Logical/physical sizes, dpi, font scaling, etc, lots to digest since I …
0
votes
4answers
142 views
Should I use a const reference or a boost::shared_ptr?
Hi,
I have created some C++ classes to model a Solitaire game as a learning exercise.
I have classes for the SolitaireGame, a CardStack (one of the 10 piles of cards on the boar …
