It aims to help people understanding their concepts/solutions better in Java, J2EE, Oracle, C/C++, OOP, Web App Development, UML, Puzzles, Best Practices, Technical and HR Interview Questions, and Useful Hacks/Tips.
Owner: geekexplains
Listed in: Computers
Language: English
Tags: Java, Oracle, Multithreading, Technical Interview Questions, Tips
Site Statistics
Unique Visitors Today:
0
Page Views Today:
0
Unique Visitors this Week:
0
Page Views this Week:
0
Unique Visitors this Month:
0
Page Views this Month:
0
Total Unique Visitors:
1,163,594
Total Page Views:
1,580,783
Total Hits Out:
1,135
Latest Blog Posts for Geek Explains
- Why String has been made immutable in Java?on Nov 28, 2009 in JavaWhy String has been made immutable in Java?Though, performance is also a reason (assuming you are already aware of the internal String pool maintained for making sure that the same String object is used more than once without having to create/re-clai...
- Memory Leak in Java? Does 'static' cause it?on Nov 17, 2009 in JavaDoes 'static' cause Memory Leak in Java?What's memory leak? In simple terms, it's unused but referenced (somehow because the programmer probably unintentionally forgot to remove the references once the use of the object was over) part of the memory.
- Marker Interface in Java: what, why, uses, etc.on Oct 29, 2009 in JavaWhat are Marker Interfaces in Java?An empty interface having no methods or fields is called a marker interface or a tag interface. There are few Java supplied marker interfaces like Cloneable, Serializable, etc. One can create their own marker interf...
- Connecting to an HTTP Web Service from VBA via Proxyon Oct 13, 2009 in MiscellaneousConnecting to an HTTP Web Service from VBA Excel via a Proxy ServerThough MSDN suggests using stubs generated from the WSDL by MS Soap Toolkit for connecting to an HTTP Web Service from within VBA Excel, but it might not work as you would like it to,...
- Why wait(),notify() and notifyAll() in the Object class?on Oct 11, 2009 in Java MultithreadingWhy wait(), notify() and notifyAll() methods have been defined in the Object class?Java concurrency model uses locks to implement mutually exclusive access to objects in a multi-threaded environment and locks are associated with every object in Java...
- per-thread Singleton and per-thread Logging in Javaon Aug 3, 2009 in Java MultithreadingUsage of ThreadLocal: per-thread Singleton and per-thread LoggingShould you require a refresh of what ThreadLocals in Java are and how they work, refer to this article first. You can then proceed with the current article for understanding two of the...
- Choosing the Most Specific Method - Tricky Overloadingon Jun 18, 2009 in JavaChoosing the Most Specific Method - Tricky Method OverloadingLet's start with looking at a code-segment and try to think of the output/error, it would produce when compiled/executed and subsequently we'll discuss the behavior of code.public class Nul...
- Initializer Blocks & their alternatives in Javaon Jun 11, 2009 in JavaInitializer Blocks in Java and their possible alternativesInitializer Blocks - what are they, why & how are they used?These blocks are similar to the static initialization blocks with the only difference being the absence of the 'static' keyword.
- Static Initialization Blocks & their alternativeson Jun 6, 2009 in JavaStatic Initialization Blocks and their alternatives in JavaWhy do we need Static Initialization Blocks?The easiest way of initializing fields (static or instance) in Java at the time of their declaration is simply by providing a compile time constant...
- Choosing a suitable access control modifier in Javaon May 30, 2009 in JavaHow to choose a suitable access control specifier of a method or a field?Access Control Modifiers available for classes and members in JavaTop-level classes in Java can have only two access control modifiers - public and default (package-private) whe...
Loading Comments...
Comments
{ds_PageTotalItemCount} commentcomments
{pvComments::date}
{pvComments::comment}