Tagged Questions
The class-instance-variables tag has no wiki summary.
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
742 views
Difference between class variables and class instance variables?
Can anyone tell me about the difference between class variables and class instance variables?
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
4answers
50 views
New instance of Python class with a non-None class attribute
I have a Python class that has a class attribute set to something other than None. When creating a new instance, the changes made to that attribute perpetuates through all instances.
Here's some code ...
3
votes
2answers
170 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.
...
2
votes
4answers
44 views
Auto-incrementing IDs for Class Instances
Disclaimer: This is for a semester project that I am currently working on. My question is regarding an implementation level detail and is not part of the grading scheme. I am only writing this code as ...
2
votes
2answers
137 views
Objective-C pattern for class instance variables?
What would be a nice pattern in Objective-C for class variables that can be "overridden" by subclasses?
Regular Class variables are usually simulated in Objective-C using a file-local static ...
2
votes
2answers
472 views
Adding a class instance variable and attr_reader to Ruby class at runtime?
How do I add a class instance variable, the data for it and a attr_reader at runtime?
class Module
def additional_data member, data
self.class.send(:define_method, member) {
p "Added ...
1
vote
3answers
88 views
How can I statistic instance numbers of each class and the memory they consumed in the peak time in native C++ project
My compiler project has a serious memory-consuming. So I want to find a method that can find out which class is the worst one. It should give me something like bellow:
...
0
votes
1answer
41 views
Singleton module or class methods + class instance variables for singleton-like behaviour in Ruby?
I need class that has singleton behaviour.
What's the difference between using the Singleton module...
require 'singleton'
class X
include Singleton
def set_x(x)
@x = x
end
...
0
votes
4answers
95 views
Should I use class variables or class-instance variables for class static variables in Ruby?
class Something
@@variable = 'Class variable'
def give_me
@@variable
end
end
class OtherThing
@variable = 'Instance variable with an interface'
class << self
...
0
votes
1answer
66 views
Problem with class instances, Android
I am trying to make a game for android
I have a bitmap and canvas instance in my main class.
I have another instance of, lets say, renderer class.
That renderer class is in the same package, but not ...
0
votes
2answers
50 views
Class Variables
Explain please, I can not understand.
class Foo
@a = 123
@@b = 123
end
What are the advantages of variable objects-classes and the class variables? When should I use first, and in which the ...