Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

118
votes
9answers
67k views

Static class variables in Python

Is it possible to have static class variables or methods in python? What syntax is required to do this?
8
votes
4answers
1k views

Is Rails shared-nothing or can separate requests access the same runtime variables?

PHP runs in a shared-nothing environment, which in this context means that every web request is run in a clean environment. You can not access another request's data except through a separate ...
7
votes
3answers
529 views

In Ruby are there any related applications of the syntax: class << self … end

class << self attr_accessor :n, :totalX, :totalY end The syntax above is used for defining class instance variables. But when I think about what syntax implies, it doesn't make any sense to ...
6
votes
3answers
7k views

How can Ruby's attr_accessor produce class variables or class instance variables instead of instance variables?

If I have a class with an attr_accessor, it defaults to creating an instance variable along with the corresponding getters and setters. But instead of creating an instance variable, is there a way to ...
5
votes
2answers
745 views

Difference between class variables and class instance variables?

Can anyone tell me about the difference between class variables and class instance variables?
5
votes
5answers
5k views

Ruby class variables

The ruby class-instance stuff is giving me a headache. I understand given this... class Foo @var = 'bar' end ...that @var is a variable on the created class's instance. But how do I create a ...
5
votes
2answers
217 views

What does class_getClassVariable() do?

If instance variables belong to an instance of a class, class variables would belong to an instance of a metaclass, I should think. But my experience with the Objective-C metaclass tells me that this ...
5
votes
7answers
613 views

Java: Getting the properties of a class to construct a string representation

Let's say I have a class like this (and also further assume that all the private variables: public class Item { private String _id = null; private String _name = null; private String ...
5
votes
3answers
840 views

Constants or class variables in ruby?

I've been programming in Ruby for a few months now, and I'm wondering when it is appropriate to use constants over class variables and vice versa. (I'm working in Rails, thinking about constants in ...
4
votes
2answers
67 views

how to create class variable dynamically in python

I need to make a bunch of class variables and I would like to do it by looping through a list like that: vars=('tx','ty','tz') #plus plenty more class Foo(): for v in vars: ...
4
votes
2answers
146 views

Accessing class variables using a variable with the class name in perl

So I'm wondering how I would go about doing this: package Something; our $secret = "blah"; sub get_secret { my ($class) = @_; return; # I want to return the secret variable here } So now ...
4
votes
1answer
229 views

Python Class Variables Question

I have some doubt about python's class variables. As my understanding, if I define a class variable, which is declared outside the __init__() function, this variable will create only once as a static ...
4
votes
4answers
148 views

In Ruby, in the context of a class method, what are instance and class variables?

If I have the following piece of Ruby code: class Blah def self.bleh @blih = "Hello" @@bloh = "World" end end What exactly are @blih and @@bloh? @blih is an instance variable in the ...
3
votes
1answer
113 views

Is it thread safe to set Active Resource HTTP authentication on a per-user basis?

Active Resource can make use of HTTP authentication set at the class level. For instance: class Resource < ActiveResource::Base end Resource.user = 'user' Resource.password = 'password' or ...
3
votes
3answers
128 views

why there are class variables in ruby?

If creating a class variable is often dangerous and unpredictable why do we need them? If solution is just to use class instance variable with the class level accessors: class Foo @variable = ...
3
votes
2answers
203 views

Class variable and instance variable question in Python

When I have this class, the variable 'value' is class variable. class Hello: value = 10 def __init__(self): print 'init' I have an object 'h' and I could get the same value of '10' ...
3
votes
2answers
171 views

Why @@class_variable syntax should be avoided in Ruby?

I know that some say the @@class_var syntax should be avoid in Ruby and should use the @instance_var in the class' scope instead ... def MyClass @@bad_class_var # Should not do this. ...
3
votes
1answer
357 views

Are “class var”s initialized to zero?

I know that, in Delphi, instance variables and global variables are initialized to zero (this has been asked here before). However, what about static variables (class var)? I would expect class vars ...
2
votes
2answers
109 views

Python Class Variable Initialization

I'd like to store some information about a class as class (static) variables. However, I can't figure out how these things get initialized. Here is a basic, dumb example: class A(object): clsVar ...
2
votes
3answers
88 views

Difference Between Dot Notation and -> in Objective C

I'm trying to use as little memory as possible in my code. I've tried two ways of sending a custom class object to a method. I'm not sure if there is any difference between these two approaches. Say I ...
2
votes
1answer
95 views

Accessing object variable via double dollar sign

I'm building a class in order to get variables form another php files conveniently. Problem is that I'm using double dollar sign in order to get create $variable_name => $$varible_real_value styled ...
2
votes
1answer
160 views

Access a module's class variables inside a class in Ruby

I have a module with a class variable in it module Abc @@variable = "huhu" def self.get_variable @@variable end class Hello def hola puts Abc.get_variable end end end a ...
2
votes
1answer
71 views

Is there a better way of doing class_eval() to extract class variables, in Ruby?

I personally don't have anything against this, apart from the fact that's is long, but what really bothers me is the word eval. I do a lot of stuff in JavaScript and I run from anything resembling ...
2
votes
3answers
319 views

What does @@variable mean in Ruby?

I am new to Ruby and have been noticing something that I don't understand: variables preceded with double at signs. My understanding of a variable preceded with an at sign is that it is a class ...
2
votes
3answers
2k views

Create module variables in Ruby

Is there any way to create a variable in a module in Ruby that would behave similar to a class variable? What I mean by this is that it would be able to be accessed without initializing an instance of ...
2
votes
3answers
131 views

Does the order of keywords in variable definition matter?

Is there any difference between the order: public static final String = "something"; or public final static String = "something"; ?
2
votes
1answer
132 views

Accessing a class variable in Struct.new block

I'm using Struct.new to create new classes on the fly (we're using some entity modelling middleware, and I want to generate concrete types on the fly for serialization). In essence I have this code: ...
2
votes
1answer
183 views

In Ruby, why after starting irb, foo.nil? says undefined error, and @foo.nil? gives “true”, and @@wah.nil? gives error again?

Same in Ruby 1.8.7 and 1.9.2: $ irb ruby-1.8.7-p302 > foo.nil? NameError: undefined local variable or method `foo' for #<Object:0x3794c> from (irb):1 ruby-1.8.7-p302 > @bar.nil? ...
2
votes
3answers
2k views

python subclass access to class variable of parent

I was surprised to to learn that a class variable of a subclass can't access a class variable of the parent without specifically indicating the class name of the parent: >>> class A(object): ...
2
votes
3answers
453 views

In objective c, is it possible to set default value for a class variable?

I have searched for the ans in stackoverflow and google too, but didnt get what i need. What I am looking for: is there any way to set default values for class properties of a class? Like what we ...
2
votes
1answer
93 views

Strategies for when to use properties and when to use internal variables on internal classes?

In almost all of my classes, I have a mixture of properties and internal class variables. I have always chosen one or the other by the rule "property if you need it externally, class variable if not". ...
2
votes
3answers
179 views

Python OOP and lists

I'm new to Python and it's OOP stuff and can't get it to work. Here's my code: class Tree: root = None; data = []; def __init__(self, equation): self.root = equation; def ...
2
votes
3answers
793 views

C++ : Initializing base class constant static variable with different value in derived class?

I have a base class A with a constant static variable a. I need that instances of class B have a different value for the static variable a. How could this be achieved, preferably with static ...
2
votes
1answer
142 views

What's the equivalent of Ruby's class @@variable in Python?

In Ruby 1.9, I can use its class variable like the following: class Sample @@count = 0 def initialize @@count += 1 end def count @@count end end sample = Sample.new puts ...
2
votes
3answers
425 views

How to make an IDisposable object a class variable?

I am working with Active Directory using C#. Instantiating the PrincipalContext object seems to be expensive, so I'd like to store one in a class variable. When using PrincipalContext as a local ...
2
votes
3answers
524 views

class variables and module inclusion, specifically in ActionController

I want to have some kind of single list that is initialized in a seperate module, then can be included in a controller and modified at the controller-class level, and accessed at the ...
2
votes
2answers
190 views

referencing static methods from class variable

I know it's wired to have such a case but somehow I have it: class foo #static method @staticmethod def test(): pass # class variable c = {'name' : <i want to reference test method ...
1
vote
5answers
57 views

Use Constant or Class Variable?

I am showing a number of navigation links on a page. It will be fixed in the application but in the future could change, but not interactively, just if a new release changed it. So fixed within the ...
1
vote
3answers
70 views

Giving each subclass its own copy of a class variable

I have the following class in my iOS application (it is like an abstract class from the Java world). @implementation WSObject static NSDictionary* _dictionary = nil; +(NSDictionary*) dictionary { ...
1
vote
2answers
113 views

Rails instance variable for record

Is there any built-in way to attach an instance variable to a record? For example, suppose I have a User class with a foo attr_accessor: class User < ActiveRecord::Base ... attr_accessor :foo ...
1
vote
1answer
69 views

Emulating public/protected static vars in Objective-C

The top voted answer to this SA question ( Objective C Static Class Level variables ) outlines my question quite well but to it, I'd like to add one more criteria: Issue Description You want your ...
1
vote
3answers
123 views

Run same java program twice having static variable in class

(I do not know whether i should ask this here or not) I want to run the same java program twice which has most of the variables static. if i ran this twice(concurrently) will these static variables ...
1
vote
1answer
70 views

instance variable, class variable and the difference between them in ruby

I am having a hard time understanding instance variable, class variable and the difference between them in ruby... can someone explain them to me? I have done tons of Google searches, just can't ...
1
vote
1answer
92 views

How do I use class variables from class and instance methods which are mixed in via a Module

I want to be able to make an option passed to my class method (auditable) available to instance methods. I'm mixing in both the class and instance methods using a Module. The obvious choice is to use ...
1
vote
5answers
238 views

PHP: how to get a static property of an instance

I must be overlooking something stupid, but, if I have an instance in PHP, what's the easiest way to get to a static property ('class variable') of that instance ? This ...
1
vote
2answers
340 views

CakePHP changing virtual fields at runtime

I have a Product model for a multi site application. Depending on the domain(site) I want to load different data. For example instead of having a name and description fields in my database I have ...
1
vote
2answers
447 views

how to access a class variable of outer class from inner class in ruby

i have some code in Ruby here below: class A @@lock = Monitor.new class B def method @@lock.synchronize puts "xxxxx" end end end end after running it throws an ...
1
vote
1answer
256 views

Accessing a Class' instance variable from outside

I understand (I think) the difference between class variables and instance variables of a class in Ruby. I'm wondering how one can access the instance variables of a class from OUTSIDE that class. ...
1
vote
3answers
169 views

Why is my counter incrementing in loop, but returns zero?

With my current project, I have to keep a counter of the number of insertions into a TreeMap<String, TreeSet<Song>>. The project is to run search of individual words in a string, in this ...
1
vote
2answers
146 views

Accessing Class Variables?

class Foo @@default = "default" p instance_variables p class_variables class << self p instance_variables p class_variables # How do I access the @@default variable here? ...

1 2