Hi, i am using package, and i want to call a method in the other java file called triangle, but it can't. i tried to pass this
Triangle tri = new Triangle();
tri. create();
but it said "Accessing static method create()", both of the method is static.
After that, i use the suggestion from NetBeans, which is "Replace with class reference" and then it change to
Triangle.create();
but it still can't pass to the method create. can anyone please help?
Thank you