Thread: Fixing Compiler Errors (Includes 100 errors)

Page 2 of 8 FirstFirst 1234 ... LastLast
Results 11 to 20 of 73
  1. #11  
    #1 footwear

    Shoes's Avatar
    Join Date
    Aug 2009
    Age
    27
    Posts
    2,612
    Thanks given
    185
    Thanks received
    255
    Rep Power
    579
    Quote Originally Posted by Cozy Cuddle Bear View Post
    what?
    It's self explanatory...

    Code:
    public void firstMethod() {
        public void secondMethod() { //Method declared inside a method would not work.
            //
        }
    }
    Reply With Quote  
     

  2. #12  
    Ваша мать имеет рак
    Koâk's Avatar
    Join Date
    Dec 2010
    Posts
    646
    Thanks given
    476
    Thanks received
    212
    Rep Power
    556
    Quote Originally Posted by Azhura View Post
    It's self explanatory...

    Code:
    public void firstMethod() {
        public void secondMethod() { //Method declared inside a method would not work.
            //
        }
    }
    a method in a method is possible, just not that way
    Strč prst skrz krk
    Reply With Quote  
     

  3. #13  
    #1 footwear

    Shoes's Avatar
    Join Date
    Aug 2009
    Age
    27
    Posts
    2,612
    Thanks given
    185
    Thanks received
    255
    Rep Power
    579
    Quote Originally Posted by Cozy Cuddle Bear View Post
    a method in a method is possible, just not that way
    You are most likely thinking of a method inside a class such as this:

    Code:
    public void exampleMethod() {
        new Thread(new Runnable() {
            public void run() { //method is inside a class
                
            }
        }
    }
    You never declared a method inside a method, what you did was give value to an abstract method in another class.
    Reply With Quote  
     

  4. #14 !00 Errors 
    Registered Member
    Join Date
    Dec 2010
    Posts
    15
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    Okay well whenever i run a 317 that load 636 (hybridpkz) i ge tthe 100 errors not i want to fix those but dont know how does anyone know how and can team view and fix it?
    Reply With Quote  
     

  5. #15  
    #1 footwear

    Shoes's Avatar
    Join Date
    Aug 2009
    Age
    27
    Posts
    2,612
    Thanks given
    185
    Thanks received
    255
    Rep Power
    579
    Quote Originally Posted by LegitPanda View Post
    Okay well whenever i run a 317 that load 636 (hybridpkz) i ge tthe 100 errors not i want to fix those but dont know how does anyone know how and can team view and fix it?
    I edited the main post to have a quick blurp on how to fix 100 errors (because it never actually said the best method lol)


    Spoiler for different picture now:
    Reply With Quote  
     

  6. #16  
    Registered Member
    Join Date
    Dec 2010
    Posts
    15
    Thanks given
    0
    Thanks received
    0
    Rep Power
    1
    Quote Originally Posted by Shoes View Post
    I edited the main post to have a quick blurp on how to fix 100 errors (because it never actually said the best method lol)
    okay look this is what im getting and idk where to edit files to fix could you help me fix my errors on team viewer or something?
    http://imageshack.us/photo/my-images/684/100errors.png/
    Reply With Quote  
     

  7. #17  
    #1 footwear

    Shoes's Avatar
    Join Date
    Aug 2009
    Age
    27
    Posts
    2,612
    Thanks given
    185
    Thanks received
    255
    Rep Power
    579
    Quote Originally Posted by LegitPanda View Post
    okay look this is what im getting and idk where to edit files to fix could you help me fix my errors on team viewer or something?
    ImageShack® - Online Photo and Video Hosting
    That has to do with the signlink class not being found, post in the client section as that is where you will find help for that.


    Spoiler for different picture now:
    Reply With Quote  
     

  8. #18  
    Registered Member
    Join Date
    Dec 2010
    Posts
    536
    Thanks given
    61
    Thanks received
    25
    Rep Power
    4
    What about the constructor error?
    It doesn't occur often, especially not with leechers.

    Like, if your method is declared as
    Code:
    (int, int, int ,int)
    and you're using, as example.
    Code:
    (15, -1, -1, 10, false)
    You'll get the constructor error, due, it has to be

    Code:
    (int, int, int, int, boolean)
    :0
    Reply With Quote  
     

  9. #19  
    #1 footwear

    Shoes's Avatar
    Join Date
    Aug 2009
    Age
    27
    Posts
    2,612
    Thanks given
    185
    Thanks received
    255
    Rep Power
    579
    Quote Originally Posted by Say Wut? View Post
    What about the constructor error?
    It doesn't occur often, especially not with leechers.

    Like, if your method is declared as
    Code:
    (int, int, int ,int)
    and you're using, as example.
    Code:
    (15, -1, -1, 10, false)
    You'll get the constructor error, due, it has to be

    Code:
    (int, int, int, int, boolean)
    :0
    Alright, I'll add that one


    Spoiler for different picture now:
    Reply With Quote  
     

  10. #20  
    Registered Member

    Join Date
    Sep 2009
    Age
    27
    Posts
    2,768
    Thanks given
    367
    Thanks received
    187
    Rep Power
    458
    Good Job and thanks.
    Reply With Quote  
     

Page 2 of 8 FirstFirst 1234 ... LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Fixing common compiler errors
    By Dexter Morgan in forum Help
    Replies: 21
    Last Post: 08-13-2011, 09:59 PM
  2. Compiler Errors
    By Shoes in forum Suggestions
    Replies: 15
    Last Post: 06-25-2011, 01:43 AM
  3. 525 help (compiler) no errors*
    By -Deathy in forum Help
    Replies: 8
    Last Post: 09-01-2010, 10:14 PM
  4. Compiler errors?
    By derp in forum Help
    Replies: 0
    Last Post: 06-22-2010, 09:56 PM
  5. Compiler Errors
    By Cody. in forum Help
    Replies: 3
    Last Post: 04-17-2009, 05:34 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •