Tagged Questions

8
votes
7answers
5k views

What Cases Require Synchronized Method Access in Java?

In what cases is it necessary to synchronize access to instance members? I understand that access to static members of a class always needs to be synchronized- because they are shared across all ...
5
votes
6answers
13k views

non-static variable cannot be referenced from a static context (java)

I ask that you ignore all logic.. i was taught poorly at first and so i still dont understand everything about static crap and its killing me. My error is with every single variable that i declare ...
4
votes
6answers
11k views

calling non-static method in static method in Java

I'm getting an error when I try to call a non-static method in a static class. Cannot make a static reference to the non-static method methodName() from the type playback I can't make the method ...
3
votes
7answers
270 views

Java Beginner Question : What is wrong with the code below?

public class Function { public static void main(String args[]) { System.out.println(power(3,2)); System.out.println(power(3,2)); System.out.println(power(2)); } public ...
2
votes
5answers
93 views

Static reference to non-static field Java error

I'll preface this by saying that I've been a longtime fan of Stack Overflow, and over the past few semesters I've usually been able to find the answer to all my questions without actually asking one. ...
1
vote
2answers
213 views

Accessing Java Applet non-static methods using Java

I'm trying to access non-static methods in a java applet, through javascript. I access static methods using the Syntax AppletName.Packages.className.methodName(); and it works. If I try to access ...
1
vote
5answers
1k views

Java: static-non-static-this problem

$ javac TestFilter.java TestFilter.java:19: non-static variable this cannot be referenced from a static context for(File f : file.listFiles(this.filterFiles)){ ...
1
vote
7answers
133 views

Java method help

Ok, so I'm working on a project for a class I'm taking.. simple music library. Now I'm having some issues, the main issue is I'm getting "non-static method cannot be referenced from a static context" ...
0
votes
5answers
60 views

Non-static method next() cannot be referenced from a static context

I am trying to parse out a mm/dd/yyyy formatted date into separate fields, but I get the following error when I try to compile: non-static method next() cannot be referenced from a static context ...
0
votes
3answers
169 views

Java - Non-static Enums

Say, I have some classes: class NPC { Attributes attributes; Skills skills; void doStuff() { //doStuffff } } class Player { Attributes attributes; Skills skills; void ...
0
votes
2answers
158 views

how to update a textbox from a static class?

This is driving me nuts. I have a working text based application. It has many many variables which now need a GUI. I'm starting with the basics. Whenever some data is sent to my log, I want it to ...
-2
votes
4answers
1k views

Java Thread using static or non-static nested class

I've encountered a very strange problem. My program looks like this: class Outter{ class Inner extends Thread { public void run(){ // do something } ...
-4
votes
3answers
117 views

how can add map object to list object non static in java [closed]

I have problem with this code,when I add map object to list,all previous added object will be changed.how can I declare map as non static? for(Statment){ map.put(Key,value), } ...