vote up 1 vote down star

Hi,

my code is as follows

public void incomingMessageThread() throws FileNotFoundException, IOException
{
    new Thread()
    {

        BuildData a = new BuildData();
        for(int i = 0; i<100; i++)
        {
            a.parseDataFile("_"+i+"/outgoingMessages");
        }

    }.start();

}

I get told its an illegal start of line. If I run the code outside a thread it works fine. Any ideas whats wrong?

flag

69% accept rate
1  
Generally it's better to pass a Runnable into the Thread constructor, rather than to attempt to subclass a complicated class. It's also a good idea to follow the conventions on formatting. BTW: You'll probably need to find a different way to do the exception handling. You might not discover the file is missing until after the method had returned. – Tom Hawtin - tackline Oct 8 at 16:06
will do thanks, this was just some throw away code to process chunks of data. :) – steve Oct 10 at 10:44
Of course I guess I should always follow best practice even if its throw away!!!!!!!!!!!! – steve Oct 10 at 10:45

3 Answers

vote up 11 vote down check

You are using statements inside of a class and outside of a method.

From the javadoc for Thread.run: "Subclasses of Thread should override this method."

public void incomingMessageThread() throws FileNotFoundException, IOException
{
    new Thread()
    {
        public void run()
        {
            BuildData a = new BuildData();
            for(int i = 0; i<100; i++)
            {
                a.parseDataFile("_"+i+"/outgoingMessages");
            }
        }

    }.start();

}
link|flag
vote up 0 vote down

Thread is a class not a function ( which is the closet your syntax above resembles )

your code should be

class MyThread : public Thread {
 public void run() {
    // code
 }
}

Thread t = new MyThread();
t.run()
link|flag
2  
should be t.start() not t.run() – Glen Oct 8 at 15:56
He's trying to use an anonymous inner class. – SLaks Oct 8 at 15:57
vote up 4 vote down

you should have written something like this (implement void run() )

public void incomingMessageThread() throws FileNotFoundException, IOException
{
Thread t= new Thread()
    {
    public void run()
        {
        BuildData a = new BuildData();
        for(int i = 0; i<100; i++)
          {
            a.parseDataFile("_"+i+"/outgoingMessages");
           }
        }
    };
t.start();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.