Search Results

0
votes

Differences between MSIL and Java bytecode?

Agreed, the differences are minute enough to ingore as a beginner. If you want to learn .Net starting from the basics, I'd recommend looking at the Common Language Infrastructure, and the Common Ty …
2
votes

What are all the different ways to create an object in Java?

When in doubt, look at the language spec. 12.5 Creation of New Class Instances http://java …
3
votes

What is Your Favourite Area of the Java API?

javax.naming http://java.sun.com/javase/6/docs/api/javax/naming/package-summary.html …
0
votes

Is there a Java equivalent for .Net System.Data?

ADO.NET is a framework with multiple uses, and DataSet is one of the main abstractions. Tell us more about what you want to achieve, and I'm sure somebody will find a Java framework for that purpos …
0
votes

Is it worth learning Java when you already know C# fairly well?

I know Java pretty well, and had to learn C# for a work project. It was very painless, and I learned a lot about both languages in the process. Java will also offer the whole 'writ …
0
votes

Splitting a swing control into equal parts

The code you posted will not compile due to syntax errors, but I see no immediate problems with your approach. You said that the problem shows up intermittendly. This suggests the problem might lay …