Search:

Type: Posts; User: tonu

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    1,659

    Re: Casting and Data Type Conversion examples

    it is a tutorial, just summerized to learn by heart
  2. Replies
    2
    Views
    1,659

    Casting and Data Type Conversion examples

    Casting and Data Type Conversion examples


    String s = "56"; // no letters inside
    byte by = Byte.parseByte(s); //56
    short sh = Short.parseShort(s); //56
    int i = Integer.parseInt(s); //56 ...
Results 1 to 2 of 2