Tagged Questions
2
votes
8answers
85 views
Is there a way to set a variable accessible for different class and function in C#?
I am creating a project in Visual Studio 2010 using C#.
I have my main (program.cs) and several different classes in different file (class1.cs class2.cs class3.cs), and each class has its own ...
1
vote
3answers
50 views
Return value in a class from another class and method
Note that I am new with Java. I have a class and and a method in this class hat computes some values and I want to return them in the first class. I have a code but it returns 0.
That's in class that ...
1
vote
1answer
87 views
Programmatically declare a variable for a common method (without using an array)
I am just learning Java, but my question is both Java-related and general.
My situation is this: I have a method that I would like to use commonly by several classes, through inheritance. Inside the ...
0
votes
1answer
23 views
Using $GLOBALS[] variable in PHP class function
I'm trying to assign $GLOBALS['a'] variable in function from class, but haven't succeeded.
Here is my code:
<?php
$GLOBALS['a'] = "alter";
class db_data
{
public $a;
function ...
1
vote
2answers
44 views
What is the difference between @@ and @ in Ruby? [duplicate]
I just started learning Ruby and I have been unable to find a good explanation on what is the difference between @@ and @ in terms of class variables. If anyone can provide a basic intuitive example, ...
0
votes
2answers
75 views
c# class variable type another class
i have a two class. Product and Color. how to access ProductColor(name,id) sample :
public class tblColor
{
public int Id { get; set; }
public string ColorName { get; set; }
}
public class ...
-3
votes
2answers
36 views
Class variable uninitialized error in ruby on rails
Here's the code:
class MulticastController < ApplicationController
@@groups=Array.new
@@groups=[]
@@group_name=Array.new
@@group_name=[]
def getResults
@@groups
...
0
votes
3answers
47 views
how to use a variable from a superclass to a subclass?
I have a superclass and I want to use a variable that is inside this superclass into my subclass. How can this be possible?
0
votes
4answers
37 views
how can a access a variable from different function of the same class in php codeigniter?
Controller:
function act() {
//some code for connection
$input = (response from client);
return $input;
}
This is the first time the act will be called so as to connect to the client.
...
0
votes
3answers
50 views
Using variables in multiple classes
I'm writing a gui program for ordering pizza and drinks and sides using buttons and checkboxes. I'm using separate classes for each of those and having them as tabs in the final program. I'd like to ...
0
votes
2answers
18 views
How do I access parent property from subclass? PHP
I have an issue accessing top level variables from sub-level class.
Here's an example...
Application.php:
class Application {
var $config;
var $db;
function __construct() {
...
0
votes
2answers
47 views
Pass variable contents to class function in Python
I'm trying to pass the contents of a variable to a function within a class that's run as a thread. How would I do this? Following is some pseudo code that should have the output following. The ...
0
votes
7answers
67 views
Common practice for variables with similar names in constructor parameter and as a property
Is there a "correct" way to name a variable when it is being passed in a constructor to a property? Example (in c#):
public class MyClass
{
private int index;
public MyClass(int i)
{
...
2
votes
2answers
42 views
Is assigning variable with Scope Resolution Operator(::) same as $this->variable?
Just curious.
if I assign self::$session = $reg->get('session'); in a __construct class, can the variable be used as the class' properties just like $this->session = $reg->get('session');?
...
-3
votes
0answers
14 views
Storing data in a class before its wiped [closed]
Programming language: C#
So I'm passing a list of data to another class in order to perform some collisionDetection, however that class is re-accessed and I believe that it is resulting in the ...
0
votes
2answers
38 views
Choosing variables to create when intializing classes
I have a class which would be a container for a number of variables of different types. The collection is finite and not very large so I didn't use a dictionary. Is there a way to automate, or shorten ...
1
vote
3answers
74 views
Is this still a class variable?
I understand class variables should start with @@. Now I have this class:
class C
@v = "my variable"
def self.get_v
@v
end
end
puts C.get_v #returns "my variable"
Is @v still a class ...
0
votes
2answers
30 views
jQuery - how to extract one class starting with into a variable
I'm working with a dynamically created list of elements, some of which are associated into sets with a class or 'Set1, Set2, etc. The elements have multiple classes, in various assigned orders but ...
0
votes
0answers
79 views
Property set in different class always returns NULL
How can I properly set a property created in another class, Class A, in a secondary class, Class B? I understand how to setup properties and synthesize them.
//The property is created in Class A's ...
4
votes
5answers
91 views
Working with multiple Classes. Program won't launch
I've been working on a rather large program, and thought it was time to split up my classes. 1 .java file for the GUI code, and 1 .java file for the mechanics behind the functions the GUI presents. ...
0
votes
3answers
55 views
AS3 Global Variables
Ok so I have managed to do this once before but I simply cannot remember how or find the source I found back then. I am making a simple flash game. There are several characters moving. To make each ...
-1
votes
1answer
50 views
Error with calling variable from a class [closed]
class Vars{
public:
char *appData = getenv("AppData");
string dir = strcat(appData, "\\Adam");
};
This is my class
And this is how I'm trying to use it:
void write(string data){
...
-2
votes
1answer
55 views
How can I call my connection variable from another class?
private static Connection conexion() {
try {
//Cargamos el Driver MySQL
conexion = DriverManager.getConnection(server, user, pass);
} catch (Exception e) {
...
1
vote
4answers
62 views
Use a variable returned in a getter method in another class
I am still learning but seem to fall at what should be very simple hurdles; my strong points seem to be with the logic of equations but I possess little skill at remembering and implementing functions ...
0
votes
2answers
56 views
Variable listener between 2 classes
I have a problem for a month ago :S .This is it:
I have 3 classes:
Class 1:
TabbedPane with a MouseListener, when someone click on a tab, the mouse listener change a variable called "update".
This ...
0
votes
1answer
42 views
can't echo php class variable
I want to write a php simple pagination class. Here is my code:
<?php
class Pagination {
public $rowsPerPage;
public $currentPage;
public $totalPages;
public $totalRows;
public $firstElement;
...
-2
votes
0answers
41 views
Accessing and chaging variables from different classes in c++ [closed]
I am trying to make a C++ game and have not been very well versed in class files. I basically made this game over a year ago and am no remaking it from scratch trying to use better programming ...
1
vote
3answers
29 views
PHP Class Properties change after assigned to variable
Take this example. I never noticed behaviour like this:
class foo
{
public $foo = 0;
public function addFoo()
{
$this->foo = $this->foo + 1;
return $this;
}
}
...
0
votes
2answers
27 views
Define object of a class derived from a string variable
Following is the use case:
Invoker class (with main method)
public class Invoker {
public static void main(String[] args) {
String class_file="Batch_Status";
}
}
Class to be ...
0
votes
1answer
37 views
Assigning class variables in R
I have a data frame whose dim is [72, 592] i.e 72 observations with 592 variables. I would like to assign observations (rows) 1 to 37 as disease and rows 38 to 72 as control with the binary variables ...
0
votes
1answer
40 views
assign $_POST to private property of a public class PHP [closed]
I have some troubles trying to asign the $_POST value to a property inside my public class.
class Sector
{
private $sectorName;
private $sectorInfo;
private $sectorCategory;
...
0
votes
2answers
46 views
using a variable from a method of another class in python
I have code that goes like this:
class A(object):
def __init__(self, master):
"""Some work here"""
def do_this(self):
self.B = B.do_that()
print self.B[1]
...
2
votes
2answers
93 views
Python class variable not updating
I have a class that is taking in an Id and trying to update the variable current_account but when I print out the details of the current_account it hasn't updated.
Anyone got any ideas for this? New ...
-1
votes
1answer
17 views
Inheriting variables from the main class to the extended class PHP
I'm attempting to make a child class (feeds) inherit a variable from the main class (controller).
I have 3 files. They look as follows.
CORE FILE:
/* ----------------------------- *
* LOAD THE ...
1
vote
2answers
52 views
Setting a Variable as a Class in PHP [duplicate]
Want to know if I can dynamically create a PHP class by stating it as a variable.
i.e.
class $vaiable {
public $foo2,
$foo3,
$foo4;
function __construct(array $data = null) ...
0
votes
1answer
42 views
Python: From outside Class access to variable in method other than __self__(init)
There is an example at http://effbot.org/tkinterbook/tkinter-dialog-windows.htm
and one thing I don't understand:
class Dialog(Toplevel):
...
self.result = None
...
class ...
-1
votes
2answers
41 views
undefined local variable ruby
Here is my class:
class Money
def initialize(dollars, quarters, dimes, nickels, pennies)
@coins = [ {:coin => dollars, :price => 100},
{:coin => quarters, :price => ...
0
votes
2answers
59 views
Unexpected behavior of a variable in a class
I have a system timer firing an event every 10 seconds. So every 10 seconds I call the class "Termocoppia" from the main thread of the form transferring the value of "milliV" to it and expecting to ...
0
votes
2answers
51 views
Using variable from another class as3
i separated one big file into multiple file to have it cleaned and i got a problem now.
I have my main.as, character.as, camera.as.
What i'm trying to do is access a variable from another class ...
1
vote
4answers
89 views
Is it possible to create a variable as a placeholder for 'current' value of a class in python?
Let's say we have a class:
NOTE: this is a dummy class only.
class C(object):
def __init__(self):
self.a = -10
self.b = 5
self.c = 2
def modify(self, **kwargs):
...
0
votes
1answer
39 views
Python/Pygame: subclass not finding variable
Probably not the right title but I've no idea how else to formulate it.
I'm trying to calculate stats based on flexible values, specifically HP & MP and return the values so they can be printed on ...
-7
votes
1answer
53 views
How to call a value from one method to another method in java without declaring the variable all methods(member variable)? [closed]
program:
accept values from the user in a method called accept
convert values of hour and minutes to seconds in method convert
display the result in seconds in display class
only hours, minutes and ...
0
votes
0answers
41 views
Class alias vs Variable class name
I'm creating my own PHP framework (for the learning experience), and I can't decide which of these would be a better practice.
Create a Registry class that has the name of every class. Other classes ...
0
votes
1answer
35 views
R- different variable classes when assigned outside and inside a function?
this is probably PICNIC, but I'm getting a rather odd set of behaviour when trying to build a function than I do when performing the actions in the console.
I'm trying to use cut2 to produce a set of ...
0
votes
2answers
39 views
How to use classes to access a variable in function_one from function_two?
Contents of file_one.py:
from file_two import *
def function_one():
my_list = []
function_two()
function_one()
Contents of file_two.py:
def function_two():
my_list.append(1)
...
1
vote
2answers
68 views
Python class instances stored in a list to store seperate instances
from datetime import datetime
class sms_store:
def __init__(self):
self.store = [] #Keeps resetting / not saving data from previous instances
self.message_count = 0 #Keeps ...
0
votes
3answers
94 views
C++ class inheritance variables
I'm working on a game, and I want to store the character belongs to a unit inside the class that defines the units. (as objects)
This is the defining class. (I use inheritance)
class Units
{
...
2
votes
2answers
44 views
How do I access my control from another method
I am making space invader and I want my bullets to come out of the position where my cannon is. When I press space a bullet will fire but I need it to be able to access the location of my cannonX ...
4
votes
1answer
80 views
What's the difference between class variables of different types?
Firstly, there is class A with two class variables and two instance variables:
In [1]: def fun(x, y): return x + y
In [2]: class A:
...: cvar = 1
...: cfun = fun
...: def ...
0
votes
2answers
44 views
Correct array_push usage in a class?
I have a PHP class like so:
<?php
class MyClass {
public $my_variable = array();
public function func1() {
$var1 = $this->my_variable;
array_push($var1, 'var1');
...

