Search:

Type: Posts; User: ncode

Search: Search took 0.07 seconds.

  1. Replies
    3
    Views
    1,409

    Re: Accessing array of method

    I mean. I want to pass the entire array into the method. Is it possible? Like : tom[1 to 100] array <--I know it's wrong but it's for illustrate purpose only.
  2. Replies
    3
    Views
    1,409

    Accessing array of method

    Hi.
    I was wondering how do I access whole bunch of array of method.
    tom is an array of object.


    Student[] tom = new Student[10];

    for(int i = 0; i < 10; i++){
    tom[i] = new Student();
    }
  3. Replies
    3
    Views
    1,563

    Re: Converting String to Int with value validation

    Thx for reply. Ya. This question is a bit of vague. But anyway, chronoz13 provided me some guide. Thank you.
  4. Replies
    3
    Views
    1,563

    Converting String to Int with value validation

    Hi. I'm new to java. I just wanted to know how do I


    Convert String to Int. Also, I would like the conversion to produce and error if the data type is wrongly assign
    Also, I would like the...
Results 1 to 4 of 4