Search Results

0
votes

How to embed a Java control on a C# winforms control?

If the control is not a custom control and is just something in swing you may find it available in Microsoft's Visual J# (either Version 2.0 or the supplemental add in for 1.1 …
0
votes

Java: Knuth shuffle on a Stack?

Just shuffle before/as you put the cards onto the stack. Since a properly implemented Knuth shuffle does not allow replacement of cards in the part of the deck already traversed you can simply plac …
6
votes

Why does Eclipse use a native launcher ?

Some of these are windows specific some are general. Your shell integration is much improved compared to a batch script in the natively available scripting language of your target …
4
votes

Does Java have buffer overflows?

A buffer overflow in the strict sense of overwriting the stack or heap itself would require either: A bug in the framework (these have existed in the past and may well again) …
4
votes

scala -> use .net (linq) and java (various frameworks) in the same program?

When you compile scala you give it either -target:msil or -target:jvm-X.X (the default being java). This means that you could attempt to make something cross compilable (that would work with both …
8
votes

Casting to Unknown Type When Only Given Class Name as a String of That Type

what is the point of casting when all you do is assign the result to object? All you would achieve is an exception if it did not implement the interface/extend or was the class or do nothing if it …
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 …
1
vote

Inheritance in Java - creating an object of the subclass invokes also the constructor of the superclass. Why exactly?

The constructor of a class is very important concept in most OOP Classes, by providing state and the means to manipulate that state, allow the easier maintenance of invariants. The construc …
21
votes

C# vs Java Garbage Collector

The difference is between the CLR (.Net) GC and the JVM GC rather than the languages themselves. Both are subject to change and the specification of their behaviour loose to allow this to be change …
1
vote

Which data structure uses more memory?

Your question is woefully underspecified because the concrete data structures you specify are not of comparable structure. The HashMap/HashTable are comparable since they both function as m …
1
vote

Converting java 1.5 source into 1.1 source

The list of minor differences and incompatibilities grows longer and longer the further back you go, they are often real edge cases but they might mount up. …
2
votes

What is the recommended way to log data that caused errors in JUnit?

If you really want to use random values then simply place the value in use in the textual part of the assert methods. Then if an assert is blown the input value will be present and you can investig …
4
votes

What’s the point of using constants for property keys?

If a value needs to be changed without a recompile you inevitably need some redirection but doing yet another is pretty foolish unless the key needs to be referenced in more than one place (itself …
5
votes

Why is C# suddenly so popular?

Specifically answering the question "There's been like a repeat explosion in the blogs lately about it" Microsoft have added a significant language change in each major release rat …
3
votes

How to get the last 25 elements of a SortedSet?

SortedSet<T> was designed assuming a very simple iteration model, forward only, thus finding the top n entries is easy but finding the last would require an expensive read throug …

1 2 next
15 30 50 per page