Search:

Type: Posts; User: anveth; Keyword(s):

Search: Search took 0.00 seconds.

  1. Re: Any other way to load the driver other than Class.forName()

    Alternative way is by creating Driver object


    Driver d=new foo.bar.MyDriver();

    //here "foo.bar" is an third party that may be mysql or orcale.
    Connection con=d.Connect();

    The best way is...
  2. Answers
    8
    Views
    19,091

    Re: Java Relationship Questions

    str.intern() is used to convert normal string class to canonical class

    String s=new String("string");
    String s1=s.intern();
  3. Answers
    9
    Views
    5,051

    Re: Abstract Classes v/s Interface

    interfaces are good to use because we can use multiple inhertiance in it.
    we cannot instantiate Abstract classes until all the methods are implemented.
  4. Answers
    18
    Views
    18,752

    Re: when we use String and StringBuffer?

    since strings are immutable and due to its cannonical representation ,we use strings
    any where in java.while coming to stringbuffer we have to instantiate for every time we are using.
    for ex,...
Results 1 to 4 of 8
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact