Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Thread: string handling

    by Norm
    Replies
    8
    Views
    1,085

    Re: string handling

    If you always do it, then the chances of not doing it when it is needed is removed. It removes one more decision to make when writing code.
  2. Thread: string handling

    by Norm
    Replies
    8
    Views
    1,085

    Re: string handling

    NullPointerException is a java class that is documented in the API doc. Open the API doc page at: Java Platform SE 7
    find NullPointerException in the lower left frame, click on the link and get...
  3. Thread: string handling

    by Norm
    Replies
    8
    Views
    1,085

    Re: string handling

    null is a value that object reference variables can have. Since a String class instance is an object, any variable that is a reference to a String can have a null value.

    The compiler wants local...
Results 1 to 3 of 3