A template for creating new objects that describes the common state(s) and behavior(s).

learn more… | top users | synonyms (1)

0
votes
1answer
29 views

C# return an a class

I'm using FluorineFx to send/receive AMF3 data over server. netConnection.Call("my-amf", "zend", "Ka_Services_Park", "getCompleteParkOfUser", new GetCustomersHandler(), new object[] { ...
0
votes
1answer
16 views

SQL statement that shows Courses NOT taken before by Students

I have three tables in MS Access database. Students (Student Name, Email) Courses (Course Name, Fees) Registration (Course Name, Student Name) I want to now create a Query that can show me all ...
0
votes
0answers
38 views

How can I encode a class into a C# Hashtable?

I am using someone else library that converts Hashtable and ArrayList to JSON. I want to use regular List<T> with this library so need to transform such lists into ArrayList. Say I have a class ...
0
votes
2answers
35 views

Instantiation of an abstract class in its member method

In a code base using Factory Pattern, an abstract class is instantiated as an argument of its member method. If abstract classes can't be instantiated , how is this pattern using it? Is there any ...
3
votes
4answers
102 views

Workaround for inheriting from multiple classes?

So I'm working on a GUI library and I have 3 classes: UIElement, the base for every UI object, UIContainer, which implements the possibility to hold other child-elements and UIRect which implements ...
3
votes
1answer
77 views

How to instantiate derived class from base class

I have extended the unit converter class given in this post: http://stackoverflow.com/a/7852721/1474894 This is what I have now: /// <summary> /// Base unit class for converting between values ...
0
votes
0answers
16 views

Retrieving DB data with mysql select in loop in include page

Hi all and thanks to anyone in advance who might be able to help me out. I've spent a whole day looking at this and cannot for the life of me work out what is going on. I have a front page ...
0
votes
0answers
16 views

PHP - Object loose the scope and return partial rendering of string

Hy, I have a problem with partial rendering of a string. What I try to do is an implementation like in Zend::Form, but in my concept is to add attributes to html elements. I've made a lot of changes ...
0
votes
3answers
56 views

Create Class at Runtime, File not Found Exception

im having a Problem creating a Class at runtime. Everytime i debug the code below i get the following error message at var cls = results.CompiledAssembly.GetType("test.DummyHelloWorldHandler"); Could ...
-1
votes
0answers
21 views

better way to do loop in template?

i'm trying to create a function / or class to loop(reusable) and separate php code and html markup, but no idea how , can anyone point me?thanks and appreciate my template.php class Template{ ...
0
votes
2answers
24 views

class header.h not included in main

So for some reason when i try to compile i get an error that in main.cpp: value and balance are not declared in scope. i used #include "account.h" in main so why are they not defined? also do you ...
0
votes
2answers
64 views

beginner Python class

I currently have this code, that if the ToggleButton is pressed I want it to say ToggleButton was pressed and then state whether the ToggleButton is on or off (it is on by default, if the button ...
0
votes
1answer
48 views

li,ul class objects won't adjust

I'm using the pseudo slider jquery and I'm trying to get the <div/> to stretch. Here is what i have: <div style="position:relative;"> <div id="slider"> <ul> ...
1
vote
1answer
42 views

Python class adding fractions

I have this class which takes a whole number and a fraction, and adds them together. The problem, however, is that the __add__ function here converts the answer to a __str__ so when I try and print ...
1
vote
2answers
40 views

adding fractions class python

I have this portion of a class that takes a whole number and a fraction and add them together. def __add__(self, g): whole_add=self.whole_number + g.whole_number numerator = ...
0
votes
2answers
29 views

Obfuscate just one class file in Android

So i have project which is going to be public (including source file). and in it im using my personal "api" which i created with time (nothing too special, just a lot of time savers) and i would like ...
0
votes
1answer
60 views

Python - len(somelist) returns different value than method in class

I have a class: class something(object): def __init__(self, name=None, someobjects=[]): self.name = name self.someobjects = someobjects And I'd like to be able to get the number ...
0
votes
0answers
24 views

GTK+ Storing instances in a variable

I have a class called Joint with many properties, I've only included a part of the constructor and class. class Joint { public: ... GtkEntry * sample; ... Joint (GtkEntry * ...
0
votes
0answers
51 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 ...
0
votes
2answers
31 views

C++ get matches from regex_iterator

I am trying to get some matches from a file by reading it line by line. My code is this: std::regex e("id=\"(.+?)\"|title=\"(.+?)\"|summary=\"(.+?)\"|first=\"(.+?)\"|last=\"(.+?)\""); ...
0
votes
1answer
45 views

Python: class method return name [closed]

This should be quite basic. I have a class and one of the traits is name. Withtin the program I have two such classes - for 1 the name works e.g. someclass.name shows a name for the other ...
1
vote
4answers
44 views

class property inaccesible due to protection level

here are my class declarations public class PlacesAPIResponse { public string formatted_address { get; set; } public Geometry geometry { get; set; } public Location location { get; set; } ...
-1
votes
3answers
41 views

python object containing a file in a list [closed]

I'm not looking for a solution here but just some hints in python techniques. I'm not well experienced in python, but I prefer to learn doing actually something, instead to read tons of generic syntax ...
0
votes
0answers
6 views

Obtain return value from a class executed using JUnit 4 SuiteClasses annotation

I'm using JUnit4 to drive test programs written in Java + Selenium Webdriver API. The test programs exercise EXT-JS web applications. A typical test driver class utilizes JUnit SuiteClasses to execute ...
1
vote
4answers
45 views

Progammatically turn module/set of functions into a Python class

Suppose I have a file with a bunch methods as bunch_methods.py: def one(x): return int(x) def two(y) return str(y) Is there a way to take that group of methods by importing the module whole or ...
0
votes
2answers
42 views

Is there a faster way to build a class in visual studio other than just typing out all the properties?

I'm creating a class in vb.net/asp.net and I'm able to do it somewhat quickly by typing property then hitting the shift key to fill out the rest of the code; however, if I have like 50-ish properties ...
-6
votes
2answers
67 views

Why one Comparable class and one Comparable<T> interface? [closed]

I am confused with the two versions of Comparable(class) and Comparable<T>(interface)? Why there are two separate versions in Java? Comparable is a Class here: Comparable[] people = new ...
0
votes
3answers
39 views

Python Class Import Error

I'm studying classes and OO in python and I found a problem when I try import a class from a package. The project structure and the classes are described below: ex1/ __init__.py app/ ...
1
vote
3answers
34 views

How to access a method's attribute

Is it possible to access a method's attribute directly? I tried this and it fails: class Test1: def show_text(self): self.my_text = 'hello' Which results in: >>> t = Test1() ...
1
vote
4answers
76 views

Keep my list/dictionary as globally accessible

Ok... I'm trying to understand this whole object oriented programming but I keep ending up in a dead end. ;) I'm trying to store or rather will store a great deal of data with using classes as I ...
-3
votes
2answers
92 views

C++ ATM Machine - A little assistance? [closed]

Here's the complete code for my program and the problem stated below. This code is from my "virtual ATM machine" program which deals with customers depositing, checking balance and withdrawing money ...
-1
votes
1answer
28 views

python - How much space does a subclass require in memory

Let's say I create some class named A() with two custom methods in it. When I instantiate it, an object will be created in some address in the memory representinf this instance. Now I create a ...
0
votes
1answer
39 views

Get two different types of both data and structure from a method

Below Class is going to compare constant regular daily times and return closest one after now. (using Joda-Time library) public class TimeComparitor { private List<LocalTime> targetTimes; ...
0
votes
1answer
19 views

Namespace and Class Naming Best Practice in Atypical System

There is a lot of good guidance out there on best practices for namespace and class naming in typical systems. I am modeling a system which introduces a problem not addressed by the available ...
0
votes
2answers
65 views

Unhandled Exception,passing two objects?

Here are the 3 classes. Fraction/Rectangle/Box class Fraction { public: Fraction(); Fraction(int); Fraction(int, int); ~Fraction(); void setNum(int); void setDenom(int); ...
0
votes
2answers
89 views

C++ Values not been stored as needed

This code is from my "virtual ATM machine" program which deals with customers depositing, checking balance and withdrawing money from their account. When I deposit the money, it displays that it gets ...
5
votes
1answer
58 views

Python descriptors with old-style classes

I tried to google something about it. Why do non-data descriptors work with old-style classes? Docs say that they should not: "Note that descriptors are only invoked for new style objects or classes ...
0
votes
2answers
47 views

Unhandled Exception,passing object?

class Fraction { public: Fraction(); Fraction(int); Fraction(int, int); ~Fraction(); void setNum(int); void setDenom(int); int getNum(void) const; int getDenom(void) ...
0
votes
4answers
59 views

C++ - Error when compiling

This is my header file which consists of a class and it's functions. I believe I've not declared the functions correctly so could someone please point out where my errors are? Thanks a lot! There's ...
-4
votes
2answers
32 views

Including a class without extending another class [closed]

class index extends help { } "index" is a action class and "help" is a library class and i want to access all property of "help" class in "index" class but i don't want to create "help" class object ...
0
votes
4answers
97 views

Defining a class in c++

When I try to run this program, I get an error saying: "fatal error: sales_item.h: No such files or directory. #include <iostream> #include "Sales_item.h" int main() { Sales_item book; ...
1
vote
2answers
102 views

delphi - class static method, static var in multi thread application

I relative new with delphi XE2, I want to know about something, if I have like this code TSomeClass=class strict private class var FCounter:integer; public class procedure ...
1
vote
1answer
46 views

Python sub-classes

I have this class which works with fractions (e.g. (1,2), (3,4) etc): class Fraction(object): def __init__(self, num=0, denom=1): ''' Creates a new Fraction with numberator num and ...
1
vote
1answer
26 views

PHP - Counting parameters of object constructor (external method)

I write a code that autoload classes, and I encountered a problem which I think is because of weakness implementation/design type. What I want to do is to count default parameters of an object ...
0
votes
1answer
35 views

how to update a listbox in one window in one class using a different class python

what i have is a window that opens up and it has a list box. this is created using one class. when i click the search button and results are found using a different class, i want the list box to ...
0
votes
2answers
45 views

How to output binary search answer?

I get the error message cannot find symbol, symbol: method books(int[], int) when I try to compile the following code. For further explanation about what I want the code to do, see below the code. ...
0
votes
0answers
7 views

Error creating home instance: class java.lang.InstantiationException (Error creating home instance: java.lang.ClassFormatError

We have J2EE application which is developed and maintained in Jdeveloper 10g. It has been working fine until yesterday when we changed a query and deployed to production. It is throwing the following ...
-1
votes
1answer
27 views

Multiple moving shapes in pygame?

I am a very very beginner programmer, and I am trying to make my first game in pygame. I want to have enemies that spawn every so often and move around randomly. When the hero (controlled by the ...
-1
votes
1answer
41 views

I installed a navigation bar with external css and it affected the rest of the website links

I created an external style sheet and installed a navigation bar at the top of my index page. The two links on the bottom of the page were affected. I then added css code for those links. They are now ...
-1
votes
0answers
57 views

What are classes and OOP in Python [closed]

I have been learning Python 3.3 and I dont understand what are OOP/classes and how they work. I would like an explanation of their systax and their structure.

1 2 3 4 5 379