Search:

Type: Posts; User: mk12345

Search: Search took 0.08 seconds.

  1. Replies
    5
    Views
    1,090

    Re: parseInt method

    thanks sir now i find the use of parseInt.
  2. Replies
    5
    Views
    1,090

    parseInt method

    what is the use of parseInt() method.?
  3. Replies
    3
    Views
    9,674

    Re: what is ... (triple dot) operator

    That feature is called varargs, and it's a feature introduced in Java 5. It means that function can receive multiple String arguments:
    The parameter that gets the ... must be the last in the method...
  4. Thread: Finally Block

    by mk12345
    Replies
    5
    Views
    2,755

    Re: Finally Block

    it allows the programmer to avoid having cleanup code accidentally bypassed by a return, continue, or break. Putting cleanup code in a finally block is always a good practice, even when no exceptions...
  5. Re: How can I produce this output without using the If statement.

    replace conditional statement with the while loop.
    or
    use for(;x>7; ) instead of if(x>7)
  6. Replies
    3
    Views
    2,720

    Re: why should we declare checked exceptions?

    in case of checked exceptions-it follows throw early catch later principal which is necessary for handling the exceptions.
    in case of unchecked exceptions-we donot know the type of exception, they...
Results 1 to 6 of 6