In object-oriented programming with classes, an instance variable is a variable defined in a class (i.e. a member variable), for which each object of the class has a separate copy.
0
votes
2answers
41 views
Add ivar and property to class using class extension
I'm trying to add an instance variable and a property to an existing class. I want to do this to extend the base class of an open source library, without modifying the source code (for easier code ...
3
votes
4answers
358 views
Should a BOOL ivar be a pointer to allow another class to set it?
My class has a BOOL property that needs to be set by another class, so I am trying to use a pointer. I'm declaring a property for it like this:
@interface SomeClass : SuperClass
{
BOOL *_shared;
...
2
votes
3answers
63 views
iVars references strong, weak or what?
In Obj-C, properties can be configured to be weak/strong. Instance variables. like following -
@interface MyClass {
NSObject *a;
}
Does the MyClass's object keep weak reference to a or strong, or ...
0
votes
1answer
37 views
objective C, properties vs ivars
I suspect that this question has been asked and answered, but I have read many posts on it and I'm not totally clear on the answer.
I generally find it quite convenient to declare private variables ...
0
votes
1answer
46 views
Ruby / Rails: Assigning values to an instance variable
What is the easiest way to assign attribute values to the (model) instance variable, when these attribute values are located in a big hash (session[:some_big_hash]) that contains the usual model ...
1
vote
1answer
52 views
Modifying an instance variable from inside a completion block
I have written some code to modify a instance variable from inside a completionblock handler that is being part of the "reverseGeocodeLocation" Method. Here is the code first of all:
- ...
0
votes
2answers
23 views
Can't add objects to array instance var by block
I would like to add objects to an instance var of type NSMutableArray, that I am creating in a block (reverseGeocodeLocation). I can see the value in the defined objects. But I can't get it to work, ...
0
votes
1answer
12 views
Instance variables in python, affected by the values of another instance
class State:
'defines the state of the class'
_state = []
"""pawn = 1 rook = 2 knight = 3 bishop = 4 queen = 5 king = 6 none = 7 whiteSq = 0 blackSq = 1 whiteCol = 0 ...
0
votes
1answer
31 views
static const variable of multiple object instances in Objective C
I have a static const variable declared in the m file of a ClassA
static NSString * const myConstString = @"a string value";
So myConstString is a constant, and is not accessible outside of the ...
-1
votes
2answers
40 views
Instance variables in extension vs implementation
In Objective-C, for instance variables that one doesn't want to put in the header file and, one can put them either in the class extension:
@interface MyClass () {
NSString *myInstanceVariable;
}
...
0
votes
1answer
37 views
Passing instance variables into API in rails
I'm trying to pass in some instance variables to call an API with that specific object's attributes. A user fills in their car details (make, model, and year) which creates an offer object. That is ...
-1
votes
3answers
61 views
How do i append some value to an instance variable in ruby on rails?
Here's what I am trying to do in my home controller:
def view
@product= Product.find(params[:id])
rand_price = rand(202- @product.price.to_i) + @product.price.to_i
old_price = rand_price ...
0
votes
0answers
41 views
Write a driver program implementing an ArrayList of CD objects
I have written the CDException class and the CD class, and now I'm trying to write a driver class to run the other classes. I have to
Read the artist name from user
Read the album name from user
...
1
vote
2answers
60 views
How can I pass instance variables to a HAML template on the command line?
Background
I'm trying to test the formatting of some HAML templates outside of Rails. The idea is to pass in some instance variables on the command line or via an included Ruby file, rendering the ...
0
votes
0answers
5 views
Having difficulties in trying to my toString method print two different outputs
I'm trying to my my toString method print Not in Stock, while the other three will print what they have in stock. So far I have this. You'll see that in the toString part in my code. I'm instructed to ...
1
vote
1answer
49 views
My instance variable isn't holding its value
Okay, so I'm building something that takes a text file and breaks it up into multiple sections that are further divided into entries, and then puts <a> tags around part of each entry. I have an ...
0
votes
0answers
89 views
iOS 6, ARC: primitive type instance variable loses value
I face a simple problem that I don't understand how to solve. Looks like ARC is involved, but where and how I've got no clue. In viewWillAppear I check the value of int fetched from sqlite and assign ...
0
votes
1answer
62 views
Link_to and Ajax request Rails
Hopefully I can explain this so people can understand what i am trying to achieve. Currently I have multiple posts being created and they are shown at this url for public view
/tynewyddnews
as ...
1
vote
4answers
71 views
how to access instance Variable in another class
I have instance variable in class1 that save integer value (number of cell in tableview) and I want used this variable in another class (for example class2) but I don't know used which syntax???
5
votes
2answers
90 views
Ruby class instance variable vs. class variable
I've read this thread When do Ruby instance variables get set? but i'm in two minds when to use class instance variables.
Class variables are shared by all objects of a class, Instance variables ...
2
votes
1answer
128 views
Android - Performance of an Activity's local variables vs. instance variables
To keep this question simple, consider a scenario where I am creating an Android Activity that simply reads data from an external source and uses that data within a TextView. I am seeing dramatic ...
0
votes
1answer
30 views
Show action on XML rails
When in rails i would normally save records to a model and then if i want to show that individual record i would find that record by its id like so
def show
@post = Post.find(params[:id])
end
...
0
votes
2answers
53 views
ruby on rails instance variable and if elsif
In my Show View I have:
<div class="reviews" >
<% @reviews.each do |review| %>
<%= review_block review %>
<% end %>
</div>
In my Controller I have:
def ...
0
votes
1answer
32 views
DataMapper fetching last record using .last throws no method error if using .any? in view
Apologies for the long wined title, in my app I am trying to retrive e the last record from the database that matches the params I have passed to it.
@goals = ...
0
votes
1answer
53 views
@controller instance variable in Rspec
Just curious. How is the @controller instance variable inside the controller specs being instantiated? And where?
3
votes
1answer
35 views
Custom instance variables and initializing with PetitParser
As far as I know PetitParser initializes each instance variable with a production method of the same name. What should one do, to add a custom instance variable and initialize it in the initialize ...
0
votes
0answers
31 views
Why is my Application instance variable always blank?
I'm trying to declare a global instance variable in my ApplicationController, to be able to access it from every views...
The following code is working BUT, it execute the query for every page ...
0
votes
3answers
141 views
What is the difference between an instance and a class (static) variable in Java [closed]
The title of this question is actually a previous examination question and I am looking for clarification / an answer to it.
Please note that I am learning Java and am becoming familiar with its ...
0
votes
2answers
91 views
python tkinter passing variables between functions
I am trying to pass the variable dirpath into the export_data() function. Export data runs off of a double click on a button located on a widget. Why is dirpath printing as:
`<Tkinter.Event ...
4
votes
5answers
186 views
Variable and Method shadowing in Java
Basically I would like to know why a static method cannot be shadowed by an instance method, (I know why, it will lead to ambiguity in certain circumstances), whereas a static variable can be shadowed ...
0
votes
0answers
20 views
dolfin get_eigenpair() results in segmentation violation in a class implementation
I want to solve a generalized eigenvalue problem with Dolfin. The solver is implemented as a class where the solve step and the evaluation step should be coded in different methods. And the ...
0
votes
1answer
109 views
How to access some instance class variables from AppDelegate.m
This is kind of hackneyed question, I have some experience programming, but Objective-c is totally new for me, and I can't find the any clear definition for me about whole objective-c concept. Here ...
9
votes
4answers
254 views
Inheritance: object creation
Let's say I have this piece of code:
class Animal {
int legs = 4;
int head = 1;
}
public class Dog extends Animal {
public static void main (String []args) {
Dog dog = new Dog();
...
-3
votes
3answers
112 views
Variables declared inside and outside brackets of @interface
Why do you have to declare variables inside the @interface brackets like this?
@interface myClass : UIViewController {
NSString *myString;
IBOutlet UILabel *myLabel;
}
Why not just do it ...
0
votes
2answers
23 views
Declarative Auth blocking instance variables
I'm using declarative authorization in my rails app, and I have the following controller:
class OrganizationsController < ApplicationController
filter_resource_access attribute_check: true
...
0
votes
1answer
65 views
Ruby: Namespacing of instance methods
I have TONS of instance methods, all sharing the same instance variables.
Since the class became huge, I split the methods into around 50 modules.
And then the class that is left is including all ...
0
votes
3answers
63 views
How do I add an instance of a class without the constructor's parameters?
I'm trying to create a fantasy football draft program. The first step I'm having a hard time is reading the data into a List properly. I want to scan the data, line by line. I created a loop that sets ...
0
votes
1answer
64 views
How do I pass variables to new children? [flash AS3]
The code illustrates the problem pretty well, I've cut everything unrelated out.
Create 2-4 kinsmen when the game starts
function createInitialKinsmen()
{
for (var k:int = 1; k < 3 + ...
0
votes
1answer
199 views
Passing an instance variable into a form - rails
This is likely an error due to my minimal understanding of Rails and how to use variables across models, so if there is more code needed to answer it or if my terminology is incorrect, let me know and ...
1
vote
1answer
284 views
undefined method `each' for nil:NilClass?
I want to dynamically create checkboxes with the users in the database, which shall be possible to choose (one or many). However, I am apparently doing something wrong because the code below gives me ...
0
votes
1answer
40 views
learning to crate object and access methods inside the class how can i..?
my execution shows this error:
java.lang.NoSuchMethodError: main
I need to get students detail as output. The program should access all the above methods. Please help.
import java.io.*;
...
1
vote
5answers
61 views
Instance Variable only in one row in Java
Hi stackoverflow members,
Do you know why an instance variable in a Java Class must be declared only in one line and not in 2?
for example:
String ring;
ring = "indeed";
It gives a compilation ...
2
votes
4answers
66 views
What are the downsides to declaring “instance” variables at the class scope in Ruby?
I almost never see this in Ruby code, but it seems to be valid:
class Foo
@bar = "bar"
def self.print_bar
puts @bar
end
end
My interpretation of the above that @bar is an instance ...
0
votes
0answers
33 views
local declaration hides instance variable
I don't know what i'm doing wrong
NSArray *itemArray = [NSArray arrayWithObjects: @"One", @"Two", @"Three", nil]; UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] ...
1
vote
2answers
320 views
Instance Variables in Stateless Session Bean - state is maintained how?
Server running on GlassFish 3.0
@Stateless(mappedName="messengerservice")
public class MessengerService implements MsnService{
int count;
@Override
public int getCount() {
// ...
0
votes
4answers
152 views
Instance variable not being recognized by its view
Can anyone think of a reason why an instance variable declared in the controller would not be recognized by its view?
Controller looks something like this:
class UsersController < ...
-1
votes
1answer
45 views
Ruby deduct from instance variable same values from other
I have two instance values: @a, and @b, there are hash-like....
(will explain on pseudo examples)
For example in @a i have:
*Field1 | Field2 | Field3*
CONTITECH | CT942K1 | 123
CONTITECH | CT722K1 | ...
0
votes
2answers
394 views
Can Ruby subclass instance variables _overwrite_ the superclass's (same name)?
In the Chapter 7.3.5 "Inheritance and Instance Variables" of the book "the ruby programing language" says :
Because instance variables have nothing to do with
inheritance, it follows that an ...
4
votes
2answers
60 views
Python adding element to an instance's list also adds it to another instance's list [duplicate]
Possible Duplicate:
“Least Astonishment” in Python: The Mutable Default Argument
I've created a Person class which has a name and a list of children. The children are of the same Person ...
0
votes
2answers
88 views
What is the difference between “__send__” and “instance_variable_get / instance_variable_set” methods?
All is stated in the question.
Both of these methods can access (read/write) instance variables by using their code name :
__send__
instance_variable_set
instance_variable_get
Could someone ...





