Program running problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sanketbarot
    New Member
    • Sep 2006
    • 30

    Program running problem

    Hello, Friends


    I am using Bluj. But I dont know how to see output. can anybody help me.

    Program was compiled successfully but I dont know how to see the output.
  • Ganon11
    Recognized Expert Specialist
    • Oct 2006
    • 3651

    #2
    if I remember BlueJ correctly, the program works something like this:

    First, you open BlueJ. Then you open a project - a collection of your classes. Once you open the project file containing your code, you can see a box in the active window with the class name in it. This box will look striped if the file has not been compiled, or solid if it has been compiled. Right clicking on the box, you can perform a few basic functions: you can open the editor, remove the class, inspect it (Not sure what this does), and compile it.

    Once compiled, you have a few more options - you can either create an object of that class (by selecting the new Class() option) or run any of the functions (by selecting the appropriate function option). If you have a main(), this is generally the function you want to run. BlueJ will run the program and output will appear in a new window.

    Comment

    Working...