1
vote
6answers
166 views
How to get instance from string in C#?
Is it possible to get the property of a class from string and then set a value?
Example:
string s = "label1.text";
string value = "new value";
label1.text = value; <--and som …
6
votes
6answers
166 views
Object-Oriented Perl constructor syntax
I'm a little confused about what is going on in Perl constructors. I found these two examples perldoc perlbot.
package Foo;
#In Perl, the constructor is just a subroutine called …
0
votes
3answers
54 views
Instance variable: self vs @
I saw a code
class Person
def initialize(age)
@age = age
end
def age
@age
end
def age_difference_with(other_person)
(self.age - other_person.age).abs
end …
3
votes
3answers
641 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 …
2
votes
5answers
122 views
[Ruby] Declaring instance variables iterating over a hash!!
Hi, i want to do the following:
I want to declare the instance variables of a class iterating over a dictionary.
Let's assume that i have this hash
hash = {"key1" => "value1" …
0
votes
5answers
113 views
Declaring an object at class level, problems. iPhone Objective-C
Objective C on iPhone:
I am attempting to declare the following object at class level so that i do not have to re-connect this socket every time I write something to it. (Writing t …
1
vote
3answers
194 views
Properties and Instance Variables in Objective-C
I'm rather confused about properties and instance variables in Objective-C.
I'm about half-way through Aaron Hillegass's "Cocoa Programming for Mac OS X" and everything is logical …
3
votes
4answers
99 views
Constant instance variables?
I use 'property' to ensure that changes to an objects instance variables are wrapped by methods where I need to.
What about when an instance has an variable that logically should …
0
votes
2answers
87 views
Objective C - access BOOL ivar of void pointer to self
I have a thing that uses a SystemSoundID to play a sound, and then repeat with a C function being used as the sound completion callback, and the function is passed (void *)self (si …
1
vote
4answers
42 views
Outputting iVars from description method?
I am pretty sure I am just missing the point here and getting confused. Can anyone tell me how I might write a simple description for an object that will print out the value of its …
1
vote
2answers
158 views
Why do my controller’s instance variables not work in views (Rails)
I would like to add a couple of instance variables to my controller, since the variables in question are required from within more than one action's view. However, the below exampl …
2
votes
3answers
272 views
How to make a real private instance variable?
I want to make an instance variable that can't be accessed from outside. Is something like that possible in objective-c? I remember Apple has private variables and stuff like that, …
0
votes
1answer
83 views
Why are my ActiveRecord class instance variables disappearing after the first request in development mode?
I have a class instance variable on one of my AR classes. I set its value at boot with an initializer and, after that, never touch it again except to read from it. In development …
1
vote
1answer
81 views
Objective-C Basic Class question
So I'm a bit rusty getting back into programming and I can't seem to find a good reference for understanding the structure for what I am trying to achieve. So, without further ado …
1
vote
2answers
189 views
Should you only use local variables in a partial?
Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application.
But within a single controller it seems accep …
