Search:

Type: Posts; User: curmudgeon

Search: Search took 0.10 seconds.

  1. Replies
    11
    Views
    1,064

    Re: Program Breaks When In Jar Format

    Yes, you should not have them as static as it breaks Object-Oriented principles, and will prevent you from subclassing or creating multiple instances of a class.
  2. Replies
    11
    Views
    1,064

    Re: Program Breaks When In Jar Format

    You're fixing the wrong thing. The solution is not to make everything static, but rather to call methods on object instances. So for instance if you have:



    public class Foo {
    public void...
  3. Replies
    11
    Views
    1,064

    Re: Program Breaks When In Jar Format

    When I run into problems like this, I try to pare my code down, to simplify it as much as possible so that it is as small as can be, yet still show the problem. This way I can isolate the error and...
Results 1 to 3 of 3