Umesh Joglekar

Greenhorn
+ Follow
since May 02, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Umesh Joglekar

Yes. It is a prerequisite.

Will the experts mention their picks for good books on starting out with XML?

Do you need any XML background or does the book assume you have no XML background but may have some background in Servlets and or JSP?
You can never be certain that anything WILL eventually be garbage collected. All you can say about anything is whether it becomes eligible to be garbage collected.
If you want to simulate the action of windows using the correct apllication to open a given file type when you double click on a file then you really need to find the file association from the registry (assuming you are writing this just for the windows platform) and use the appropriate application in the call to execute()
22 years ago
I keep seeing this post several times.
XYZ,
Java ranch has thousands of visitors ... etc.
Why not simply enforce this policy at registration time and simply reject any logins of older login ids which do not conform with the new policy?
22 years ago
I want to try J2ME. Where do I start?
22 years ago
Here is a quote from M & R
"A finalizer can catch and throw exceptions like other methods. However, any exception thrown but not caught by the finalizer when invoked by the garbage collector is ignored. The finalizer is only called once on an object, regrdless of being interrupted by any exception during its execution, In case of finalization failure the object still remains eligible to be disposed of at the discretion of the garbage collector(unless it has been resurrected)
22 years ago
A is correct. It will not compile. It will also not compile with an explicit cast i.e. d2 = (DerivedTwo) d1 because d1 is not convertible to d2 even with a cast.
22 years ago

I compiled following with JDK1.3 without any problems
public class MyClass {
class A{
static final int x = 10;
}
public static void main(String[] args) { }
}

22 years ago
One ending in 4 is the third printing
One ending in 1 is i think first printing
22 years ago