Tagged Questions
5
votes
3answers
63 views
Why use classmethod instead of staticmethod? [duplicate]
I know what they do and I've seen many examples of both, but I haven't found a single example where I would have to use classmethod instead of replacing it with a staticmethod.
The most common ...
1
vote
4answers
82 views
Call static function in C++
I am writing a code to work with vectors in C++.
I've got 3 files: main.cpp, Vektor.cpp and Vektor.h
Now I want to call a static funktion in main, which is implemented in Vektor.cpp and declarated in ...
0
votes
1answer
53 views
PHP call method of class where class name is in field of other class
I have a CodeIgniter php setup and enhanced it with RESTful capabilities.
I have the following structure
base.php (this is the base controller class
class Base {
private $model
public ...
0
votes
2answers
76 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
vote
0answers
99 views
static methods inheritance in backbone over different modules
I am using backbone.js for a web app.
I have different component views which are derived from few base classes.
Each of the view has few static methods for initializing and creating instances.
For ...
0
votes
1answer
46 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:
...
3
votes
3answers
134 views
Class VERSUS namespace, OR class AND namespace? [closed]
Both Class and Namespace?
This question is about a pattern that I am seeing myself use more and more: Having both a class and a namespace for related concepts. I think this is motivated mainly by ...
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 ...
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
2answers
185 views
android - Pass class as parameter to access static variables
I need to pass a class so I can access its static variables.
Example:
Class FirstClass
{
static int x = 1;
}
Class SecondClass
{
static int x = 2;
}
I have a method in another class (which will be ...
1
vote
3answers
156 views
Java program freezes on call to any method of a particular class
I have an application that I am working on that decided to stop working in a very unexplained manner. After some debugging and error tracing, I found the problem to be in the call to a specific method ...
1
vote
1answer
203 views
Fatal Error when calling static method
So, here's my situation :
I'm using CodeIgniter
I've set up a helper, ('string_helper' under 'DK' folder)
I've set up the dkString class in dk/string_helper.php
static function ...
-3
votes
4answers
149 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
62 views
access object outside through an abstract function
Given the following classes:
<?php
class test{
static public function statfunc()
{
echo "this is the static function<br/>";
$api= new object;
}
}
class traductor
...
0
votes
1answer
39 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
271 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() » ...
0
votes
2answers
295 views
Calling Other Classes' Instance Method from Class Method? (Objective C)
I have the following method in a class named "Item". As you can see, getImage is a class/static method, but I want it to return an instance method from a DIFFERENT class (Item Instance). I don't see ...
1
vote
4answers
171 views
Correct design for a validation class?
I'd like to create a class that will validate form input (please no comments about reinventing the wheel).
I'm thinking it makes more sense to have a class with static validation methods, rather than ...
0
votes
2answers
138 views
PHP Error when using variable variable to insert data into static variable
I'm not very good at this, so I'm sure this is a stupid question.
I have a class:
class debug {
private static $messages = array();
private static $errors = array();
private static $all = ...
0
votes
1answer
154 views
Static/shared property and method in JavaScript
I'm trying to have a 'class' in JS which tracks how many instances of itself have been instantiated. I am attempting to do so like this...
var myNamespace = {};
myNamespace.myClass = function () {
...
1
vote
0answers
756 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 ...
2
votes
2answers
102 views
How to call a method to load class variable in Ruby?
The data is loaded once because it takes a while to load, doesn't change, and is shared. This is a static class: I am not using any instances.
class Foo
@@ data = self.load_data
def ...
1
vote
2answers
408 views
C++ static property initialization error on string
#include <iostream>
#include <cstring>
#include <QString>
using namespace std;
class A {
public:
static const int i = 9;
static const int PI = 1.3;
static const char ch ...
2
votes
4answers
3k views
Call a Non Static Member Method from Another Method
Is there a way to call a non static class member method from another method that is contained within the main class in c++? If so, what would the code look like?
Problem is, I can't declare this ...
0
votes
6answers
1k views
Java Integer.parseInt() Not Working for Large Numbers
I have the following simple piece of code which is intended to detect that a given IPv4 address indeed only has numeric values (that is after the dots have been stripped):
import ...
0
votes
4answers
81 views
Am i correctly setting up this static method?
Instructions: Write a static method createAdult for Person that returns a special instance of this class. The instance represents a generic adult and has the name "An adult" and the age 21.
Person is ...
1
vote
2answers
184 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 ...
3
votes
4answers
210 views
Deciding to make a C# class static
If I have a Utilities.cs class in C#, which contains only static methods
e.g.
public static string DoSomething()
{
return "something";
}
Should I make the class itself static?
public static ...
0
votes
2answers
74 views
Accessing a method of a member object in C++
I am trying to access a method of an object (myEOS.calc(...)) from a method of an object (myPlanet) of another class containing an instance of the first class (static EOS myEOS):
// class in class
...
0
votes
1answer
74 views
Creating dynamic static vars inside a class?
Is it possible to define dynamic vars or anyway to do the following?
Example 1:
class base
{
protected static $$dynamicVar;
protected function myFunction($value)
{
$dynamicVar = ...
12
votes
4answers
421 views
what's the point of declaring static functions in PHP?
So in PHP you can have
Class A{
function B(){}
}
and you can call this as if it were a static function:
A::B();
My question is...if I can do this, then why should I ever declare the function ...
0
votes
4answers
101 views
How to find places where a non-static method is called?
In the case of the following example,
I can not easily find the places where get() of Book class is called by searching files with get.
Because there are a lot of get which do not belong to Book ...
1
vote
3answers
67 views
Would a method in a static class and a static class method have the same callabilty?
I guess my question is would
static class example1{
function example1_function(){};
}
and
class example2{
static function example2_function(){};
}
lead to the same result, which is ...
1
vote
6answers
236 views
What is the relationship between a static function of a class and the constructor of the class?
What happens every time a static function is called on the class? When is the constructor executed?
0
votes
1answer
2k views
Objective C - Calling a static method on a Class type object?
I get the following error:
Class is not an objective c class name
- (void)CallStaticMethodForClass :(Class *)myClass
{
[myClass doSomething];
}
+ (void)doSomething
{
//
}
1
vote
4answers
5k views
static and non static methods in java [duplicate]
Possible Duplicate:
When should a method be static?
i am trying to make an interface class for tube/subway ticket machine. well not for real, but for a coursework in a computer science ...
5
votes
1answer
133 views
In PHP, is it a problem to call a static class function using the -> dereferencer
I am using PHP 5.2
I have the following code:
class MyClass {
public function __construct() {}
public static function stuff() {
echo 'This is static! <br />';
}
}
...
3
votes
1answer
324 views
In C++, can I represent a class type as a variable?
I would like to call a static method from a class that I'll determine at run-time, but which I know subclasses a given class. So let's say I have these classes
class super {
public:
super();
...
0
votes
3answers
76 views
how to create an object from given class name in php?
I have a variable $className which is name of declared class in php and I want
create an object of this class
lunch a static method of this class
3
votes
6answers
2k views
Why can't you call a non-static method from a static method?
I have a static method [Method1] in my class, which calls another method [Method2] in the same class and is not a static method. But this is a no-no. I get this error:
An object reference is ...
0
votes
3answers
247 views
.Net: What does it mean? Having a non-static class with a static method?
What does it mean?
Having a non-static class which has for example one static method?
Without creating an instance of that class, we can't use it. But What about its static method?
0
votes
2answers
783 views
php call member variables off a class within static method
I am using some method to autoload helper files with functions
The only problem I am having now, is how to call the variables in that class.
Because I am not instantiating it as an object $this won't ...
0
votes
5answers
155 views
Class design: allow a class to be used both as an object and also supply public static methods
I have a silly, little class "FileSystemSize" which can be used both as an object and also via public, static methods. The output is similar, but not identical in each case.
The class was intially ...
1
vote
4answers
3k views
Calling static method on a class?
Say, I have a reference to a Class object with SomeType having a static method. Is there a way to call that method w/o instantiating SomeType first? Preferably not escaping strong typing.
EDIT: OK, ...
3
votes
4answers
2k views
How to write class methods that return collections of instances
I'm struggling to define a class method that populates and returns a collection of instances. The issue I don't know how to get around is that I have private attributes to populate.
Let's use the ...
13
votes
7answers
1k views
Is there any advantage in using a Python class?
I have a Python class full of static methods. What are the advantages and disadvantages of packaging these in a class rather than raw functions?
1
vote
3answers
392 views
How to setup an Object Creation Interface “rule” in C#?
The general rule is that I want to say, "T has a method with a String parameter which will return List." Put verbosely, we might call the interface ICanCreateListOfObjectsFromString. A possible ...
4
votes
6answers
2k views
The best way to invoke methods in Python class declarations?
Say I am declaring a class C and a few of the declarations are very similar. I'd like to use a function f to reduce code repetition for these declarations. It's possible to just declare and use f as ...

