-5
votes
4answers
50 views

private method in python

I would like to have a function in my class, which I am going to use only inside methods of this class. I will not call it outside the implementation of these methods. In C++, I would use a method ...
0
votes
3answers
22 views

Type hinting and static methods

When I run this code class Kernel { private $settings = array(); public function handle(Settings $conf) { $this->settings = $conf; return $this; } public ...
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 = ...
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 ...
1
vote
3answers
105 views

Alternative to virtual static functions in c++?

In the header file .hpp: class Base{ public: static /*Some Return Type*/ func(/*Some Datatype*/); } class Derived1 public Base{ public: ...
1
vote
1answer
85 views

Calling static method non-statically

I have a child class that extends a class with only static methods. I would like to make this child class a singleton rather than static because the original developer really wanted a singleton but ...
2
votes
1answer
30 views

Accessing private from static method in PHP

Why this works? I mean, accessing the private variable. class Test { private $q = 0; public function __construct() { $this->q = 1; } public static function EpicConstruct() { ...
2
votes
1answer
84 views

Why use staticmethod instead of no decorator at all

There are several good explanations on SO about why/when you should use a class method vs a static method, but I've not been able to find an answer for when you would use a static method over no ...
0
votes
3answers
103 views

Action Script 3 Static Method

I'm new to Action-script OOP and i need to know how to chain methods like this example i have I.$(button).bind('click',clickButton).bind('rollover',overButton).bind('rollout',outButton) First i ...
-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
3answers
72 views

Dynamically added static methods to a Python class

I found really good example how to add new method to the class dynamically (transplant class): def say(host, msg): print '%s says %s' % (host.name, msg) def funcToMethod(func, clas, ...
2
votes
4answers
192 views

static variable inside static method doesn't change

I want to create a class which has a static method that returns a reference to a static variable(which is declared inside the method). What I want is when calling the method to get the reference of ...
0
votes
1answer
50 views

Cant use the class object with other class

I had 2 Class in PHP That i want to use with each other, but the Class in 2 different PHP Script like clothing_product.php and database.php. It look like this Below: database.php: ...
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
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
1answer
91 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
1answer
73 views

Are static methods really necessary for a programming language? [closed]

Programming languages like C# or Java feature static methods, despite being heavily object oriented. I'm aware that there are many cases where static methods are used for performance or convenience ...
1
vote
1answer
402 views

vbscript static class variables/methods?

Is there a way to have one variable per class in vbscript? If not what is the best way to emulate it? Prefixing a global variable declared next to the class? Also is there a way to declare ...
0
votes
0answers
66 views

Can't get data from a static array in HelperAdmin

I have a file/class::method (HelperAdmin.php/HelperAdmin::menuItem()) which extracts data from DB to generate main menu and submenu. I have to get this data after the menu being generated but I don't ...
0
votes
3answers
78 views

Java & Android & SharedPreferences & OOP

The function contains in the main Activity: public int checkScore(int scoreCurrent) { int maxscore = PreferenceConnector.readInteger(this, "maxscore", 0); if (scoreCurrent > ...
0
votes
4answers
95 views

Access a class field from static method

For example, I have a class class MyClass { public $something = 'base'; public function __construct() { $something = 'construct'; } public function __destruct() { ...
-3
votes
4answers
158 views

Javascript “this” in static methods

I have a code like that: User = function(){} User.a = function(){ return "try"; } User.b = function(){ } ​ From User.b() I can call User.a() using: User.b = function(){ return ...
1
vote
2answers
494 views

Access static variable from static method

I want to access a static variable from a static method: #!/usr/bin/env python class Messenger: name = "world" @staticmethod def get_msg(grrrr): return "hello " + grrrr.name ...
0
votes
1answer
40 views

Twinned static and instance methods

I've got a class, like this, simplified: public class Bookmark { public string Nav { get; set; } public string Scroll { get; set; } public string Comment { get; set; } public ...
1
vote
3answers
284 views

Javascript static method intheritance

I want to create a javascript class/object that allow me to have various method: Model class Model.all() » static method Model.find() » static method Model delete() » instance method Model save() » ...
2
votes
1answer
338 views

Python Static methods, why? [duplicate]

Possible Duplicate: What is the difference between @staticmethod and @classmethod in Python? I have a few questions about staticmethods in classes. I will start by giving an example. ...
1
vote
3answers
196 views

PHP combined static and non-static class vs 2 separate classes

I have a PHP class for building HTML tags. Each HTML tag becomes of new instance. I have some utility methods needed within the class for handling certain functional stuff like escaping attributes and ...
0
votes
1answer
148 views

PHP methods that work in both instantiated and static contexts?

I'm trying to setup some PHP methods that are callable in instantiated and static contexts. What are some good ways to do this? For example I want to be able to do: Foo::bar($item); ...
1
vote
0answers
785 views

Javascript static method in class defined inside global object

I know Javascript doesn't have classes in the same way that traditional OOP languages do and that a "class" definition such as the following, is merely a function object that can be used with the new ...
3
votes
1answer
422 views

Getting the class name from a generic static method in Java

I have a code: Model.java: public abstract class Model <T> { public static <T> T find(int id) { T result = (T) blackMagicMethod(T.class, id); return result; } } , ...
7
votes
6answers
602 views

“Static methods are death to testability” - alternatives for alternative constructors?

It is being said that "static methods are death to testability". If that is so, what is a viable alternative pattern for the below? class User { private $phone, $status = 'default', ...
4
votes
2answers
353 views

Magic methods in static objects

I am trying to achieve this. I have session manager class, its something I developed for my framework. I need to have unique session keys, so instead of doing something like this: $_SESSION['foo'] = ...
0
votes
0answers
62 views

What are the disadvantages of creating a control class functions of which are all static? [closed]

Which one is more common, control classes with static functions or creating instances of control classes in php? I am about to create my control classes, before, I used static functions and I have ...
1
vote
2answers
507 views

PHP: Invoke static method without class name

I have simllar question like here: static-method-invocation, but in PHP. Simply, I want have class like this: static class ClassName{ static public function methodName(){ //blah blah ...
1
vote
5answers
778 views

Why Static Methods are allowed only to call static methods not non static methods [duplicate]

Possible Duplicate: Why can I only access static members from a static function? While I was trying to call a normal method from inside a static method I got the error: An object ...
0
votes
3answers
107 views

Static Method Call

I have one class which has one static method as shown below. class A { A() { Initialize(); } static void fm() { ; } void Initialize() { ; } } Now in the program ...
1
vote
2answers
196 views

Connect class, static or instance?

I am trying to write a class that encapsulates the logic to: build a specific url based on another class's properties and host/port information from a config file make a connection parses the ...
1
vote
1answer
100 views

Accessing python containing classes or objects

How to access the calling/outer/container python class within current class when added as a property. Consider this example... class a(): @staticmethod def meth(): print 'Who called ...
4
votes
2answers
2k views

Static Helper Class vs Static Method on an Instance Class vs Extension Method

I'm looking for a best practice approach to the following problem. I'd like peoples opinion's on which method(s) they would use, and why, to the following scenario: I've got a Class which is ...
3
votes
5answers
2k views

Why a Static Constructors do not have any parameters

As per MSDN: A static constructor does not take access modifiers or have parameters. A static constructor is called automatically to initialize the class before the first instance is created ...
3
votes
4answers
620 views

What are the use of static functions in OOP?

What are the use of static functions in OOP? How it is differentiated from other function ?
6
votes
3answers
226 views

When would I want to use “class” (static) methods or properties in JavaScript?

In JavaScript, why would one want to attach properties directly to the constructor? var Human = function() {}; Human.specie = "Homo Sapience"; I've got this question after looking at ...
1
vote
5answers
164 views

Can sub-classes modify behavior of static methods in an abstract super-class in Java?

I'm using "Parameterized" runner to execute some tests. I am generating the test data from XML file. This works fine. Now I want to apply this behavior to multiple test classes without having to ...
2
votes
7answers
557 views

Static method override

class XYZ{ public static void show(){ System.out.println("inside XYZ"); } } public class StaticTest extends XYZ { public static void show() { System.out.println("inside ...
3
votes
5answers
1k views

What is the use of the static modifier in object-oriented programming?

In one of my interviews, I was asked what the static modifier signifies. I replied by telling the interviewer that static class's object cannot be created and other useful points. But the interviewer ...
1
vote
3answers
202 views

OO Pattern for performing a single action

I often have the situation that I want to implement a single action, say "Backup the database". In classic structured programming, I would simply implement this as a single functions, which takes the ...
11
votes
5answers
4k views

What is the difference between static methods in a Non static class and static methods in a static class?

I have two classes Class A and ClassB: static class ClassA { static string SomeMethod() { return "I am a Static Method"; } } class ClassB { ...
5
votes
3answers
2k views

python class design (staticmethod vs method)

What's the nicer way for methods that don't need any passed information (object instance or class) because for example they just do a simple conversion. @staticmethod or method ? class Foo(object): ...
7
votes
3answers
1k views

Static method get - is this bad practice?

Had a discussion with a colleague about wether this is bad practice or not. Now I can not find immediate examples of this online. We have a lot of database object mappers and call it's functions ...
6
votes
10answers
834 views

Appropriate use of Static Method

Conceptually, is it appropriate to use a static method (C#) when the method will only take inputs and reformat the input as the output? For example: public static string FormatString(string ...

1 2