Tagged Questions
0
votes
0answers
45 views
Can I use a static method to add an OnClickListener in Java
Is it possible to add an onClickListener in a static method?
I'm trying to create a convenience class make some common modifications to Crouton (Ben Weiss' implementation based on Cyril Mottier's ...
3
votes
4answers
86 views
Does Java's Arrays.asList() violate OOP?
In Java, I wanted to convert an array to a list. Given that Java is an OOP language I expected to do something like:
int[] myArray = { 1, 2, 3 }; // non-working code
List myList = ...
0
votes
7answers
99 views
Why is the static variable null when I try to access it in another class?
I have two classes: Server class (plain java class) and MainActivity class (android activity class). I am trying to access a static variable from the Server class with my MainActivity but every time I ...
0
votes
3answers
35 views
Stubbing a static method with JMockit using 'any'
I want to test, whether Collection.sort(...) is called or not with JMockit:
final List<Employee> employees = new ArrayList<>();
new Expectations() {
{
...
2
votes
2answers
77 views
How long do my static variables live?
I have a class that looks like:
public class BadCodeStyle {
private static String theAnswer = null;
public static void setAnswer(String whatsNew) {
theAnswer = whatsNew;
...
0
votes
4answers
51 views
private static ClassName ClassInstanceVariableName=null;…what is this?
Well there is a static implementation here, I don't understand.I have previously used static but not extensively, can anyone help me to understand the code. Here is the code
import ...
0
votes
3answers
43 views
new object is created or not?
I am reading Effective Java by Joshua Bloch. It confuses me in the item 1, where it states
A second advantage of static factory method is that, unlike constructors, they are not required to create ...
3
votes
5answers
125 views
Overriding static methods in java
i know that we cannot override static methods in java. I read here why:
but can someone explain the following code:
class A {
public static void a() {
System.out.println("A.a()");
}
...
-2
votes
4answers
114 views
Trying to count blank spaces in a string recursively?
EDIT: Really sorry, I mean Java! As for what I think, I would say the first contains if statement is for s == null or length 0, but I'm confused as to what to put in the
return ...
4
votes
3answers
124 views
Should a Model class (in MVC) use static method or instance method?
In term of a MVC framework, should I use a static method or instance method?
e.g. Assume a Users class, and a method getUserById() which return a User class, which one is better choice?
Users users ...
2
votes
4answers
130 views
Java: Calling a static method in the main() method
I am supposed to do the following:
Write a Java application (Client) program with a static method called generateEmployees( ) that returns a random list of 10 different types of Employee objects. ...
0
votes
1answer
95 views
Trouble with static and non-static
I'm new at Java and following a beginners course right now. Very nice, i'm trying all kinds of stuff but now i'm stuck.
This piece of code doesn't work. It should output the input in reverse order (by ...
0
votes
2answers
46 views
Can't check instance variable values in static method in Eclipse debugger
I want to keep track of values of an instance variable, and my breakpoint starts at a static method. I can't check the instance variable value. Is there a way to do that? I searched over google, but ...
8
votes
3answers
158 views
Java - Generic Static Methods
I have been trying to understand whether it is possible to make a method which infers a generic type based on the return class and calls a static method of that generic type.
i.e. Below I create 2 ...
0
votes
1answer
105 views
Why doesn't my program call my methods?
java methods statithing but I can't seem to get my while statement on line 56 to call my methods properly. Is there something that I'm doing wrong? I am very new to Java so any sort of help would be ...
-1
votes
1answer
101 views
Java - Difference Between 'static' and 'public static' Method Declaration [duplicate]
I'm reviewing an existing code base and finding methods that are declared as both 'static' and 'public static' in the same class. The 'public static' declaration seems, by my understanding, to be ...
1
vote
1answer
64 views
Behavior of static methods/variables change after adding instance variable in Java
This isn't so much of a problem as it is a question. I have several classes that inherit the following abstract class:
public abstract class PixelEditorWindow {
protected static int windowHeight, ...
-3
votes
2answers
76 views
Calling static function on class in C++ [duplicate]
I am writing a lot of java now, so I am getting confused with the java static methods and c++ static functions.
in java, you can call a static methods from a class, and I frequently use/see it, for ...
0
votes
2answers
64 views
Declaring a private method static
Can there ever be a good reason to declare a private method static if no other methods within the class that are public static call it? Even if the method does not require any instance variables, ...
0
votes
1answer
124 views
Trying to call methods in main method with variable initialized in other methods
I am pretty sure i have this all figured out but i have 3 arrays that i initialized not in the main method, but obviously i cant call those arrays when calling the method in the main method, so my ...
0
votes
2answers
56 views
static method calling singleton
Consider this 'pattern' I encounter in a application I inherited:
public class BusinessUtil{
public static void doBusiness(IService myService, String arg1, int arg2){
//something ...
2
votes
7answers
123 views
Is this code multi-thread safe?
private static Map<Integer, String> map = null;
public static String getString(int parameter){
if(map == null){
map = new HashMap<Integer, String>();
...
0
votes
7answers
177 views
Is using static private methods really faster/better than instance private methods?
What I'm asking is whether there is a difference between doing this:
public Something importantBlMethod(SomethingElse arg) {
if (convenienceCheckMethod(arg)) {
// do important BL stuff
...
0
votes
2answers
86 views
How do I call a public static void that is in a different class.
I have 2 classes, MainActivity and MainGame. If I have a public static void in MainActivity, and one in MainGame. How would I execute the one in MainGame from MainActivity?
For example, I have this:
...
-1
votes
5answers
143 views
what is the work-around to “non-static variable cannot be referenced from a static context”? [closed]
There's a particular idiom to putting a method, or perhaps anonymous inner class, somehow, into the main method of a driver class:
package net.bounceme.dur.misc;
import net.bounceme.dur.misc.Foo;
...
0
votes
1answer
363 views
Declaring static method in Singleton spring bean
We are running into memory leak issue and we suspect that below code could be reason, we have a static method in a singleton class and doubt that its causing memory leak while its being referenced ...
0
votes
5answers
155 views
Java - Can't declare object in static class
I'm trying to implement a singleton pattern for a System class. The examples I found do not compile (e.g. http://www.tutorialspoint.com/java/java_using_singleton.htm). There is a static method in a ...
0
votes
1answer
184 views
(Another) “non-static method cannot be referenced from a static context” issue
ERROR: non-static method cannot be referenced from a static context.
In my case the method is called readFile().
Hi. I'm experiencing the same error that countless novice programmers have before, ...
-2
votes
1answer
66 views
How do static methods work in this example? [closed]
package fnl;
import robocode.Robot;
import robocode.ScannedRobotEvent;
public class FnlBot2 extends Robot{
public void run(){
turnLeft(getHeading() % 90);
turnGunRight(90);
...
2
votes
1answer
150 views
Using static class methods in multi-threaded programming
I am building a webcrawler which is using two classes: a downloader class and an analyzer class. Due to my design of the program I had some methods which I outsourced to a static class named utils ...
2
votes
3answers
117 views
How to avoid running static initializers?
I have a legacy (not modifiable :-() code, that have a static initializer block.
I would like to create a subclass - but without running the static block.
Is there any way doing this? For example: ...
1
vote
5answers
142 views
Calling static method from the same class vs different class Java
I have a class say ClassOne.
The ClassOne has two methods say method1() and method2() and both of these methods are static and will be called right one after other(like this):
ClassOne.method1();
...
8
votes
3answers
411 views
Java why is using static helper methods bad?
I'm asking because I'm trying to use a mocking framework (Mockito) which does not allow you to mock static methods. Looking into it I've found quite a few blog posts saying that you should have as few ...
2
votes
6answers
827 views
Get instance of subclass with superclass static method
I have a superclass that I would like to forward a static method called getInstance() to all subclasses.
When creating an instance of a subclass, I then register the instance in the superclass ...
0
votes
4answers
78 views
When we can have class and method as static? [closed]
When we can have class and method as static?
Anybody please help me with some example...
0
votes
0answers
35 views
How to inject a static method with both Spring XML and Guice? [duplicate]
Possible Duplicate:
Spring: How to inject a value to static field?
I have a POJO that has a single, private, static property that should only exist at the class-level (hence its static):
...
1
vote
1answer
162 views
Calling static method from a (superclass) list of subclass instances
Say I have a base class A (with a virtual method called normalInit()), and 300 subclasses: A1, A2, A3, ... Each of these subclasses have a staticInit() static method, plus a normalInit() override. ...
1
vote
2answers
83 views
Getting xml file inside Jar file
I'm using NetBeans and i wrote this function, with help of other thread to a same question,
but i get error of line "InputStream is = getClass().getResourceAsStream(xml_file_path);"
saying: ...
2
votes
3answers
159 views
calling static method in java [duplicate]
Possible Duplicate:
How come invoking a (static) method on a null reference doesn’t throw NullPointerException?
Can any one explain why the output of the following program is "Called"
...
1
vote
5answers
82 views
Is using a static method cheaper than importing the whole class?
I have a small static method mymethod inside a relatively big (library) class com.package.pirulo. I can do one of two things: Either I import com.package.pirulo and then I just use ...
0
votes
2answers
177 views
How to mock static methods using UnitilsJUnit4?
I have method getAllCustomers inside CustomerService class. Inside this method I call another static method from CustomerDao class.
Now when I am writing the junit for method getAllCustomers inside ...
2
votes
4answers
112 views
Generics and static methods
I have this static method
public static List<? extends A> myMethod(List<? extends A> a) {
// …
}
which I'm calling using
List<A> oldAList;
List<A> newAList = ...
1
vote
3answers
457 views
How to ensure thread safety of utility static method?
Is there any general way or rules exits by which we can ensure the thread safety of static methods specifically used in various Utility classes of any applications. Here I want to specifically point ...
0
votes
2answers
118 views
Java: Instance ArrayList Derived From Other ArrayList in Static Method
The issue with my code is that when I call generateCSV() below, the output of the ArrayList is not correct. It is replacing all of the instances with only the last instance to be instantiated, i.e. ...
0
votes
1answer
230 views
Calling Instance of ArrayList in Static Method
EDIT: I am rewriting this question, to hopefully make the code more explicit.
I have a class, Pred, with 2 variables.
public class Pred {
private String str;
private ArrayList<Keys> ...
10
votes
4answers
130 views
final static methods exam
I have been studying for my Software Development course and came across the question from a sample:
"Why does it make no sense to have both the static and final modifiers in front of a Java method?"
...
0
votes
2answers
611 views
how to Inject dependency in static method with spring? [duplicate]
Possible Duplicate:
How to make spring inject value into a static field
I have below code
public class CustomerService {
private static CustomerDAO customerDao;
public static void ...
3
votes
2answers
180 views
Static factory methods in effective java
In Effective Java , Item 1, it says that the static factory methods made the Collections framework much smaller than it would have been. Could someone please explain how ? I can't understand how the ...
0
votes
1answer
459 views
mergesort string method java
I need help with using merge sort with a string array. I've seen many examples of this with an int array but I need help using a string array. I can only use the .compareTo() method. This is my main ...
6
votes
6answers
259 views
Java Pattern class doesn't have a public constructor, why?
I've been reviewing Java Regex Library, surprised by the fact the Pattern class does not have a public constructor which I've taken for granted for years.
One reason I suspect the static compile ...



