Tagged Questions
The instance-variables tag has no wiki summary.
25
votes
7answers
4k views
Properties and Instance Variables in Objective-C 2.0
Do properties in Objective-C 2.0 require a corresponding instance variable to be declared? For example, I'm used to doing something like this:
MyObject.h
@interface MyObject : NSObject {
NSString ...
24
votes
8answers
17k views
Python - Get Instance Variables
Is there a built-in method in Python to get an array of all a class' instance variables? For example, if I have this code:
class hi:
def __init__(self):
self.ii = "foo"
self.kk = "bar"
Is ...
14
votes
4answers
11k views
How can I initialize a module's instance variables in Ruby?
I have some modules where I would like to use instance variables in. I'm currently initializing them like this:
module MyModule
def self.method_a(param)
@var ||= 0
# other logic goes here
...
13
votes
4answers
4k 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. You would declare ...
13
votes
5answers
7k views
When do Ruby instance variables get set?
class Hello
@hello = "hello"
def display
puts @hello
end
end
h = Hello.new
h.display
I created the class above. It doesn't print anything out. I thought the instance variable @hello ...
10
votes
1answer
327 views
Why do people always use reassignment for instance variables in objective-C (namely iphone)?
I always see example code where in the viewDidLoad method, instead of saying, for example
someInstanceVar = [[Classname alloc] init];
they always go
Classname *tempVar = [[Classname alloc] init];
...
10
votes
6answers
2k views
How to make instance variables private in Ruby?
Is there any way to make instance variables "private"(C++ or Java definition) in ruby? In other words I want following code to result in an error.
class Base
def initialize()
@x = 10
end
end
...
10
votes
8answers
2k views
Instance variable initialization in java
I have doubt in instance variable initialization in java.I have seen different developers initializing varibles differently.In the below sample codes what is better way.Do we have any advantage of ...
9
votes
7answers
2k 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 new.
sub new {
#I ...
9
votes
3answers
1k 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
protected :age
end
...
8
votes
4answers
1k views
Declaring instance variables iterating over a hash!
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","key2" => ...
7
votes
3answers
256 views
Objective-c modern runtime using both properties and ivars in interface block
I've seen code examples (from the book Beginning iPhone 4 Development) where they both declare ivars inside the interface block and then declare properties for the same. Like this:
@interface ...
7
votes
3answers
3k views
iOS: must every iVar really be property?
I see it recommended all over the place that when coding for iOS, properties should be used for accessing instance variables because of the benefits this lends to memory management, among other ...
7
votes
4answers
453 views
Is there any reason to declare ivars if you're using properties exclusively in Objective-C?
I tend to use properties exclusively in my classes, especially now that you can declare properties in a class extension thanks to the modern Objective-C 2.0 runtime—I use this feature to create ...
7
votes
3answers
2k views
Private members in CoffeeScript?
does somebody know how to make private, non-static members in CoffeeScript? Currently I'm doing this, which just uses a public variable starting with an underscore to clarify that it shouldn't be used ...
7
votes
3answers
195 views
C/C++ Possible to get a “list” of instance members by querying a class?
Suppose we have a struct in C++:
struct foobar
{
int age;
bool hot;
String name
};
Is there a way, programatically, to query the above struct to extract its instance members? For ...
7
votes
3answers
372 views
Best practice for copying private instance vars with NSCopying
I might be missing something obvious here, but I'm implementing NSCopying on one of my objects. That object has private instance variables that are not exposed via getters, as they shouldn't be used ...
7
votes
4answers
7k 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, but if people know ...
6
votes
2answers
631 views
Does a private @property create an @private instance variable?
I've read that @synthesize will automatically create corresponding instance variables for @property and that ivars are @protected by default. But, what if I use a class extension (like below) to ...
6
votes
4answers
844 views
How do I set an attr_accessor for a dynamic instance variable?
I dynamically created an instance variable within my class:
class Mine
attr_accessor :some_var
def intialize
@some_var = true
end
def my_number num
self.instance_variable_set ...
6
votes
2answers
238 views
unusual behaviour in delphi assembly block
I am running into some weird behaviour with Delphi's inline assembly, as demonstrated in this very short and simple program:
program test;
{$APPTYPE CONSOLE}
uses
SysUtils;
type
TAsdf = ...
6
votes
4answers
536 views
Ruby on Rails- :symbols, @iVars and “strings” - oh my!
New to Rails and trying to get my head around when/why to use :symbols, @ivars , "strings" within the framework.
I think I understand the differences between them conceptually
only one :symbol ...
6
votes
4answers
635 views
Total newbie: Instance variables in ruby?
Pardon the total newbiew question but why is @game_score always nil?
#bowling.rb
class Bowling
@game_score = 0
def hit(pins)
@game_score = @game_score + pins
end
def score
...
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 ...
6
votes
3answers
522 views
Have you ever used a “class instance variable” in any of your Ruby code?
I can understand why you would need a class variable to keep track of things like the total number of objects that have been instantiated in that class.
And I can understand why you would need an ...
6
votes
1answer
2k views
Rails Active Record Instance Variables
My questions is in regards to this AR and its instance variable @saved
class PhoneNumber < ActiveRecord::Base
has_one :user
validates_presence_of :number
def self.create_phone_number( user, ...
5
votes
1answer
1k views
AVAssetImageGeneratorCompletionHandler - how to set or return variables?
i´m using the AVAssetImageGenerator to get images from a movieclip without playing it before. Now i´ve got a question how to set up variables in the loop of a handler?
Is it possible?
I´m getting ...
5
votes
2answers
457 views
Why is it possible to override instance variables in PHP but not in Java?
Consider the code below:
<?php
class Base {
protected $name = "Base";
public function getName() {
return $this->name;
}
}
class Foo extends Base {
...
5
votes
8answers
975 views
What exactly does “static” mean when declaring “global” variables in Java?
I've been running into this problem many times and I never bothered to learn why its happening and learn what "static" actually means. I just applied the change that Eclipse suggested and moved on.
...
5
votes
7answers
706 views
C# Copying instance variable to local variable in functions of same class
I have been looking through some code on an open source project recently and found many occurrences of this kind of code:
class SomeClass
{
private int SomeNumber = 42;
public ReturnValue ...
5
votes
2answers
790 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 acceptable to reference ...
5
votes
1answer
2k views
smalltalk singleton pattern: how do I initialize the instance variables?
I'm having trouble in getting the singleton pattern to initialize a instance variable in smalltalk. (here is a link to another implementation for clarification)
this is what I have:
new
...
4
votes
4answers
80 views
Does an anonymous inner class always capture a reference to “this” (outer) object when accessing its primitives etc.?
If I have
[EDIT: added the type definition for "Inner"]
interface Inner{
public void execute();
}
class Outer{
int outerInt;
public void hello(){
Inner inner = new Inner(){
...
4
votes
4answers
78 views
Ruby attr_reader allows one to modify string variable if using <<
Ran into some weird behaviour and wondering if anyone else can confirm what I am seeing.
Suppose you create a class with a member variable, and allow it to be read with attr_reader.
class TestClass
...
4
votes
3answers
332 views
Why does Scala language require you initialize a instance variable instead of relying on a default value?
Scala language requires you initialize your instance variable before using it. However, Scala does not provide a default value for your variable. Instead, you have to set up its value manually by ...
4
votes
4answers
152 views
Why do instance variables seemingly disappear when inside a block?
Forgive me, guys. I am at best a novice when it comes to Ruby. I'm just curious to know the explanation for what seems like pretty odd behavior to me.
I'm using the Savon library to interact with a ...
4
votes
1answer
111 views
System.Windows.Forms.Timer and instance variables
I have a button-click event handler that among other things updates a private, non-shared instance variable in the containing Form.
I also have a System.Windows.Forms.Timer, whose Tick event comes ...
4
votes
3answers
92 views
Should composite properties of a Model class be always initialized?
I tried to find a similar question on SO but had no luck. Apologies if it's a duplicate.
What are drawbacks to instantiating class-type variables when they are declared?
In a lot of classes ...
4
votes
5answers
293 views
Static/Final java classes?
I want to force implementation of the singleton pattern on any of the extended classes of my parent class. That is, I only want one instance of every child class to ever be around (accessible through ...
4
votes
2answers
526 views
What is the difference between ivars and properties in Objective-C
I'm pretty sure this question hasn't been formulated in this way before, but if it has please accept my apologies. Basically, I would like a clear definitive explanation regarding the semantic ...
4
votes
10answers
2k views
Hide instance variable from header file in Objective C
I came across a library written in Objective C (I only have the header file and the .a binary).
In the header file, it is like this:
@interface MyClass : MySuperClass
{
//nothing here
}
...
4
votes
4answers
670 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 not be changed? Eg, ...
4
votes
2answers
2k 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 example does not work as I ...
4
votes
10answers
3k views
What is the difference between a property and an instance variable?
I think I've been using these terms interchangably / wrongly!
3
votes
2answers
61 views
Inheriting instance variables in Objective-c
In Objective-c 2.0 why do subclasses need to reference instance variables in parent classes using the self keyword?
Consider this example:
// a.h
@interface MyClass : NSObject
@property (nonatomic, ...
3
votes
1answer
95 views
Ruby / IRB: set instance variable to private or otherwise invisible?
In Ruby, when I do something like this:
class Foo
...
def initialize( var )
@var = var
end
...
end
Then if I return a foo in console I get this object representation:
...
3
votes
3answers
224 views
Objective-C 2.0: Inheriting synthesised instance variables
I have the following code:
// ClassA.h
@interface ClassA : NSObject
@property (nonatomic, retain, readonly) id my_property;
@end
// ClassA.m
@implementation ClassA
@synthesize my_property;
- ...
3
votes
2answers
202 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
582 views
Objective-C Properties for Class and Its Subclasses Only
Is it possible to define properties that are only available to the class they are defined in, and that class's subclasses?
Stated another way, is there a way to define protected properties?
3
votes
2answers
121 views
Is there a way to inspect all controller variables at once in Rails?
I am exploring an big controller method, with about 10 or so instance variables. Some of them are set in before_filter methods, and some others inside the method itself. I want to inspect them with ...