Methods that neither require an instance of the class nor can they implicitly access the data (or this, self, Me, etc.) of such an instance.
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...
1
vote
1answer
96 views
Constexpr construction and static member is not working
Consider the following code:
#include <iostream>
#include <type_traits>
template<typename Type>
class Test
{
public:
constexpr Test(const Type val) : _value(val) {}
...
0
votes
2answers
50 views
Accessing static method via $this
I have the following:
class HP_Utils {
/**********************************************************************/
public static function getAction()
...
2
votes
1answer
92 views
Python3: check if method is static
Simmilar question (related with Python2: Python: check if method is static)
Lets concider following class definition:
class A:
def f(self):
return 'this is f'
@staticmethod
def g():
...
0
votes
1answer
152 views
undefined reference to `Static Class Member variable inside Static member function'
I am actually trying to implement a simulation of Paging, in my memory manager, i tried create a static page table, but its giving reference error when i try to print it.
#ifndef MEMORYMANAGER_H
...
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
151 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
78 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
127 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
2answers
458 views
Call static method in static class from asp page
When I call static method from asp page I got this Compilation Error:
CS0103: The name 'Tudo' does not exist in the current context
Line 10: <script src="<%= Tudo.getFromDefinicao("winJS") ...
0
votes
1answer
144 views
No enclosing instance of type ContactsXmpp is accessible?
this is the class i am using
public class ContactsXmpp extends SherlockFragmentActivity {
private static Context ctx;
@Override
public void onCreate(Bundle savedInstanceState) {
...
1
vote
5answers
74 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
144 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 ...
0
votes
1answer
87 views
How to Access Object Properties w/ Static Callback?
Description:
I'm having an issue with a 3rd party library, this library is called TVideoGrabber. When I pass the address of my function to the library I lose access to MyClass methods and properties ...
2
votes
4answers
144 views
How do I write a cookie inside a static webmethod
I'm using John Culviner's jquery.filedownload plugin.
For that to work I need to write a cookie. How do I write a cookie from within a static webmethod? As Page. Response is an instance field I ...
2
votes
4answers
109 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
356 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 ...
1
vote
1answer
171 views
static Vs non static methods & members interaction
i have a WebMethod that serves an Ajax AutoComplete Extender as it's DataSource.
FontnmsList_AutCpltDataSrc()
so it must be static ,... unless I will implement it through another approach... such ...
-1
votes
3answers
179 views
How can I access to parent non-static property in static method, in php? [closed]
I have a problem with accessing parents (non-static) property in child class static method. I've tried these as below:
class Parent
{
protected $nonStatic;
// Other methods and properties
}
...
0
votes
2answers
109 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
3answers
52 views
Logger class, How to access it from any method
I have a logger class I made and I'm not sure which is the best way to implement it.
The write() method in this class needs to be able to be called from any method from within every class in the ...
0
votes
1answer
204 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> ...
0
votes
0answers
92 views
PHP - How to return a new object through a static method? [closed]
I am writing a class that contains methods to set details about a user and a static method to return an object containing those details based on the ID passed to the method as an argument. I'm new to ...
10
votes
4answers
127 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
411 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 ...
-2
votes
1answer
92 views
OO PHP static keyword, should I use it? [closed]
I know this has been covered in past but I still have some doubts.
I'm writing script for fb and I have 3 objects that I'll be using through all classes. I'm Wondering if there is any advantage of ...
0
votes
1answer
57 views
python static class with static method that uses self?
I'm doing a database insert script in pycassa. I want to set up a public static class that defines some variables that will get used a lot by other functions later on. Heres what I have...
class ...
0
votes
2answers
33 views
Method not performing well
I'm new to iPhone dev, and very rusty with C-style programming, namely pointers. I made a RGBColor class that holds three ints for red, green, and blue. In this class, I have a static method to return ...
3
votes
2answers
170 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
396 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
239 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 ...
9
votes
5answers
160 views
why doesn't this code throw NullPointerException
I was just discussing about calling static methods using class name with my friend and tried out this code and expected it to throw NPE at runtime.but as it turn out it dint. i just want to understand ...
2
votes
1answer
65 views
Global variable gets different values when used in different static methods
I have the following class that implements static methods that must use a single global array. It is defined as such:
//Defined in LockTrack.h file
enum LOCK_ID{
LOCKID_0,
LOCKID_1,
...
0
votes
1answer
91 views
call static aspx method from silverlight
I would like to know if it is possible to call from my silverlight application a statick method in my web application (aspx), where the silverlight is hosted?
0
votes
2answers
184 views
HttpServletRequest and static method thread-safety in Struts 2
Suppose I have a static method in a class like so:
public static String getSomething(HttpServletRequest request)
Which, in the method, calls request.getHeader("headerName") and ...
3
votes
2answers
96 views
How can I dynamically call a static method on a derived class
In my ASP.Net MVC pages I can click on column headers to sort by that column, but this involves "magic strings" in the aspx, which can result in runtime issues. I am trying to check at runtime ...
0
votes
2answers
86 views
Property file won't load in static code, getting NullPointerException
I am trying to load a property file in Java in static initialization code:
public class NFWConfiguration {
private static final Properties PROPS = new Properties();
static {
try {
...
0
votes
3answers
113 views
Compilation Error related
Given:
11. public static void test(String str) {
12. int check = 4;
13. if (check = str.length()) {
14. System.out.print(str.charAt(check -= 1) +", ");
15. } else {
16. System.out.print(str.charAt(0) ...
0
votes
3answers
104 views
How can I run a static initializer method in C# before the Main() method?
Given a static class with an initializer method:
public static class Foo
{
// Class members...
internal static init()
{
// Do some initialization...
}
}
How can I ensure ...
0
votes
2answers
317 views
unrecognized selector sent to class - for static method with no parameters
.h
#import <Foundation/Foundation.h>
#import "Person.h"
extern NSString *const kRemindersWeekly;
extern NSString *const kRemindersDaily;
@interface Reminders : NSObject
...
0
votes
2answers
99 views
C++ undefined reference (static member) [duplicate]
Possible Duplicate:
C++: undefined reference to static class member
Logger.h:
class Logger {
private:
Logger();
static void log(const string& tag, const string& msg, int ...
0
votes
2answers
157 views
How to get SharedPreferences from non-Context class and without using non-final static variables?
I need to get a reference to the shared prefs from inside an abstract class called A that does not extend anything.
I cannot pass a Context object to this class to get the shared prefs because being ...
5
votes
2answers
140 views
Generics in return types of static methods and inheritance
Generics in return types of static methods do not seem to get along well with inheritance. Please take a look at the following code:
class ClassInfo<C> {
public ClassInfo(Class<C> ...
5
votes
1answer
227 views
Why is a static member function _declared_ static, but _defined_ otherwise in C++?
Here's a minimal working example:
A.h:
class A{
static int a_member_function();
};
A.cpp
#include "A.h"
int A::a_member_function(){return 5;}
int main(){ return 1;}
This code compiles ...
0
votes
1answer
89 views
PHP Data Between Static Methods of Different Classes
I'm writing a Wordpress plugin, and struggling with OOP concepts in PHP. What I want to do is relatively simple, I think, so I don't know whether I'm barking up the wrong tree with the way I'm trying ...
0
votes
2answers
48 views
Static method variable issue
I created class for handling sounds. But I've problem to stop sound? I can't send variable from playSound to stopSound AudioServicesDisposeSystemSoundID(soundID).
How to handle this? I really don't ...
1
vote
1answer
141 views
MonoTouch - how to override static UIView.layerClass
I'm trying to port AUISelectiveBordersView to MonoTouch.
It's basically a subclass of CALayer and integration in UIView via Categories.
"Translation" of AUISelectiveBordersLayer is easy, but ...
0
votes
5answers
246 views
Call a non static void from another class
I am trying to end an never ending circle. I need to call a void that is not static from another class. The reason that I do not make it static is that some things are very hard to make static. ...
0
votes
2answers
118 views
Using MySQLi's real_escape_string as a static function
I'm wondering if I could escape strings (using real_escape_string) without first creating an object instance to apply the function to?
i.e, we can do this:
$database = new ...
4
votes
3answers
90 views
Unchecked exception when using static imports, how come?
I'm experiencing some strange behavior when using static imports of inherited static methods:
com/example/util/BaseUtil.java:
package com.example.util;
/*default*/ class BaseUtil {
public ...


