This site requires JavaScript, please enable it in your browser!
Greenfoot back
luna124
luna124 wrote ...

2012/10/29

missing method body

luna124 luna124

2012/10/29

#
/**
     * Creates lamps.
     */
    public void makeLamps();
    {
        int i=0;
        while (i<25)
        {
            addObject (new Lamp(), 300, 180);
            i=i+1;
        }
        
    }
Hi together, I wrote this code and now it tells me
Missing method body or declare abstract
I don't find my mistake :-( Could you please help me? Thank you very much luna 124
Gevater_Tod4711 Gevater_Tod4711

2012/10/29

#
there it an ';' after the method: public void makeLanps(); if you remove this it will work
luna124 luna124

2012/10/29

#
Oh thanks- I didn't see it. It works now :-)
You need to login to post a reply.