1
vote
Why was constness removed from Java and C#?
As to why they did it those involved have said so:
http://blogs.msdn.com/ericgu/archive/2004/04/22/11823 …
3
votes
Platform-independent GUID generation in C++?
Simply using whatever guid/uuid is present on the target platform is best. Doing it right is hard (let's go shopping ;)).
The probability of a collision between any two identifiers from dif …
6
votes
What is the best data structure for representing nodes in 3D space?
As with any "what should I use to represent this structure" question it does really depend on how you want to interact with it
Scene graphs are common in 3D libraries, they …
0
votes
What is the best way to pass information from a C# app to a C++ app while both are running?
MailSlot api is small and simple but requires P/Invoke to use from c# and can go outside your local machine so needs care.
see my …
1
vote
C++ serialization of complex data using Boost
If all you want is key value pairs then the important thing is the types the keys and values take, this will colour how you deal with things.
Serialising the map itself would be a poor pla …
6
votes
Using C++ Class DLL in C# Application
Simple way assuming class Foo:
Create a C++/CLI project, call this FooWrapper.
Make FooWrapper depend on the unmanaged dll (however you normally would).
Create a man …
2
votes
Windows Forms in Unmanaged Code?
Managed C++ via Visual Studio has supported a forms designer since at least 2003 C++ with managed Extension …
2
votes
asking about execute of a line
The idiomatic c# implementation would be via the System.Console class.
Specifically one of
…
1
vote
C++ Object Graph to C#
Have you considered writing a little script to convert the C++ headers into a protocol buffer .p …
2
votes
gcc optimization flags for Xeon?
Xeon is a marketing term, as such it covers a long list of processors with very different internals.
If you meant the newer Nehalem processors (Core i7) then …
3
votes
[C++] What is metaprogramming?
The concept comes entirely from the name Meta- means to abstract from the thing it is prefixed on.
In more 'conversational style …
2
votes
C++/C# callback continued
If you wish to
Consume data from unmanaged code in managed code
Then you have an issue unless you consume it as a byte pointer (unsafe code) or you take a copy (which marshal …
2
votes
Big O help
You can work this out by considering what happens to a tree with N nodes.
The function will be called once for every node in the tree so is both O(N) and Big-Theta(N).
Consider how …
4
votes
Why is C++ relatively “harder” to use/bad choice for a beginner?
Specific measurable differences compared to java and c#:
I am not in any way suggesting one approach or the other is better simply that they are different and that differ …
26
votes
What are the schools of OOP ?
Several key 'differences in 'Style' within the broader OOP banner.
In all cases a statement about a static or dynamic type system means predominately one or the other, the …
