Big, Old and Evolving Project = A LOT OF DEPENDENCIES. Here’s what came up: We needed to insert dummy data to a database to test new Java code functionality, but the only way to insert…
Tag: java
A, B, or C?
Which one compiles?Which has no exceptions?Which works the right way? A) isUniqueDealAs1.B) isUniqueDealAs2.C) Both. (Java 1.4.2) int _iNum;int _iNum1;int _iNum2;String _strID; public boolean isUniqueDealAs1 (FilterTestObject ftoR) { if (this._iNum == ftoR._iNum && this._iNum1 == ftoR._iNum1…
Language/IDE Comparisons, Part 1.
Every once in a while, I’ll post up some new headaches, awesome-ness, or just differences that have come up for me using Java(1.4.2)/Eclipse (3.1.2) and C#(1.0)/Visual Studio 2003. Here are some to start: IDE Features:-Eclipse’s…
VS .NET versus Eclipse.
Visual Studio .NET 2003 versus Eclipse 1.3.1 (Web Tools Platform). So, even though I only have a few days (7 workings days to be exact) with Eclipse, there are already a few of things I…
Java/Eclipse and METRO.
So I’ve downloaded and installed Eclipse 3.1.2 and JDK (1.)5.0. I’m learning the basics: threads, collections, exceptions, and i/o from the Sun tutorials. What I need is a small project that uses all the above…