About the JavaOne Conference Group
The JavaOne conference is brought to you by Sun Microsystems and the industry. In its 14th year, JavaOne brings... more »
Have something to say?
Join LinkedIn for free to participate in the conversation. When you join, you can comment and post your own discussions.
Join LinkedIn-
Entrinsik Launches Informer Dashboards With Web-based, Interactive... prweb.com
Entrinsik, developer of award-winning Informer software, announces...
Most Popular Discussions
Testing ADF, Web SErvices and Oracle Applications events.linkedin.com
JAVA One - India 2012 Join many of your fellow Java, Oracle and Application Development Framework (ADF) developer community enthusiasts to view various testing solutions, based on Oracle’s testing tools which test...

- I have nothing to submit
- Thanks to LinkedIn I was able to submit
- I submitted mine, but no thanks to LI
- I mist the deadline :-( « your vote

Java Magazine - November/December 2011 oraclejavamagazine-digital.com
Java Magazine is an essential source of knowledge about Java technology, the Java programming language, and Java-based applications for people who rely on them in their professional careers, or who aspire to.

JavaOne Call For Papers!
#JavaOne CFP closes April 9. Whachagot4us? http://ow.ly/a3syA

Which method is more preferable to create a thread? erpbasic.blogspot.in
Abstract Class Android Apps Archivelog Array Audit management in BAAN ERP BAAN ERP BAAN programming tools BSE collection Classes Collections Control file Data Block Data Dictionary Database Database Auditing Database Connection...

Java - Creation of thread
A thread can be created in two ways 1) By implementing the Runnable interface 2) By extending the class Thread, to know more about ...
Creation of a thread erpbasic.blogspot.in
A thread can be created in two ways a) By implementing the Runnable interface. The Runnable interface consists of only one method - the run method. The run method has a prototype of b) By extending the class Thread. 1)...

The List and Set collections provide iterators, which are objects that allow going over all the elements of a collection, read this ...
What is an Iterator interface? erpbasic.blogspot.in
The List and Set collections provide iterators, which are objects that allow going over all the elements of a collection in sequence. The java.util.Iterator<E> interface provides for one-way traversal...

The Final Word On the final Keyword renaud.waldura.com
Some features of the Java language simply cannot be ignored. Consider for example interfaces, used extensively by every Java specification; or try/catch blocks, that form the basis for exception handling. Other features are...

JavaOne Conference is now an open group
I am pleased to announce that, as the owner of this group, I have just switched us to an open discussion group. All future discussions ...

What is the difference between Strongly typed and Weakly typed... erpbasic.blogspot.in
Ans: In a statically typed language, you declare variables before you use them. In a dynamic one, you can use any variable at any time, as long as you initialize them before you use them. In a strongly typed language, variables...

How is it possible for two String oblects with identical values not to be equal under the == operator?
Here is an interesting answer of an interesting question i hope you will find it informative and correct me if i am wrong.
How is it possible for two String oblects with identical values not... erpbasic.blogspot.in
Ans: The = = operator compares two objects to determine if they are the same object in memory i.e. present in the same memory location. It is possible for two String objects to have the same value, but located in different...
