Search:

Type: Posts; User: chronoz13

Search: Search took 0.08 seconds.

  1. Re: (.readLine() method) of BufferedReader class

    i change the method name of the public method word() into doIt()



    String word(boolean x) {

    return "My Method";
    }

    //if i change the method name ....
  2. Re: (.readLine() method) of BufferedReader class

    public class NewClass {

    String word(boolean x) { // i add some parameters here..

    return "My Method";
    }

    public String word() { //method word is already defined

    ...
  3. Re: (.readLine() method) of BufferedReader class

    but i try to make a method like the first one...




    public class NewClass {

    String word() {

    return "My Method";
  4. (.readLine() method) of BufferedReader class

    Overrided

    whats the difference of this



    String readLine(boolean ignoreLF) throws IOException {
    StringBuffer s = null;
    int startChar;
Results 1 to 4 of 4