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

2013/4/15

How to use greenfoot debugger????

danbyization danbyization

2013/4/15

#
Hi I was having a look at the greenfoot debugger earlier today and i just cant figure out how it works. Can anybody teel me how it works please? Also i was wondering does greenfoot have any other tools for testing your projects?? Thank You
JetLennit JetLennit

2013/4/15

#
You can use it to track the
System.out.println("Stuff" + stuff);
statement
danbyization danbyization

2013/4/15

#
What do you mean by that????
JetLennit JetLennit

2013/4/15

#
This is a reply to when you said
danbyization wrote...
Also i was wondering does greenfoot have any other tools for testing your projects??
Breaking that statement down:
  • The
    System.out.println
    part just finds the statement where java has it
  • The
    ("Stuff"
    part outputs the word "Stuff" in a terminal that automatically pops up
  • The
    stuff)
    part (if you have the variable) outputs the variable "stuff" in the terminal that has popped up
  • And last but not least (Even though you probably already know this) The
    ;
    ends the line
danbyization danbyization

2013/4/16

#
Sorry i meant how do i use the greenfoot debugger to track that statement?
You need to login to post a reply.