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

learn more… | top users | synonyms (1)

0
votes
2answers
52 views

Defining a class in c++

I'm a newbie! A simple answer to this would be appreciated. Here's the question. #include <iostream> #include "Sales_item.h" int main() { Sales_item book; std::cin >> book; std::cout ...
0
votes
1answer
18 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 class procedure SomeProcedure();static end; As my understanding, SomeProcedure() will ...
1
vote
1answer
37 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
23 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
0answers
13 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
44 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
4 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 ...
0
votes
1answer
19 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
13 views

Installed a navigation bar with external css, do all regular website links have to be styled now?

I created an external style sheet and installed a navigation bar close to the top of my index page. The two unstyled (I thought) links at the bottom of the page took on some of the characteristics of ...
-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.
0
votes
1answer
24 views

Adding active class to navigation menu failed with deeper url

I want to add the class "active" on item menu when the relative page is on. the menu is very simple: <ul id="main-menu"> <li class="blue"> <a ...
2
votes
2answers
60 views

Alternatives to static methods in a framework PHP

Lately I have been trying to create my own PHP framework, just to learn from it (As we may look into some bigger and more robust framework for production). One design concept I currently have, is that ...
0
votes
2answers
57 views

Jquery function on specific divs

OK, I have seen this question before, however none of the provided solutions worked for me, so I decided to start a new thread. I have some multiple results shown in HTML, and I want to use a jQuery ...
0
votes
1answer
61 views

How to use the unique function inside a class?

Using inside a class, the BinaryPredicate passed into the unique function should also be a class member function. When I try to pass the in-class member function, an compiling error occurs: cannot ...
-1
votes
0answers
76 views

Array of class in a class

I need to do a Class "categories" that has some items, like name, shortname, etc. And it has an array for a list of another "subcategories". I have problems with that, I don't know if that is the ...
0
votes
0answers
9 views

Opening a Colorbox 'iframe' from a CSS generated Button

I have a css generated button on my page which I fond on http://www.cssportal.com/css3-button-generator/ the code on the page is a id="cssDisplay" class="testbutton" ...
3
votes
1answer
41 views

Assigning values to a referenced instance

I am an intermediate Java beginner and also completely new to stack overflow. (This is my first post.) I have a question about the following code and the assignment of values to a reference. First, ...
0
votes
4answers
20 views

Defining declared variable outside of my class

I have a class where I first do a SQL check to see if some certain data exist and if not then I INSERT a new record. I'd like to somehow define a variable ($feedback) indicating ive either inserted ...
0
votes
2answers
18 views

jquery form specific dropdown values based on class

I know this is simple and the answer has got to be out there somewhere but I can't find it. How do I select all the values of a series of dropdown menus with a specific class inside a specific form? ...
0
votes
2answers
25 views

CUDA class with multidimensional pointers

I have been struggling with this class implementation now for quite a while and hope someone can help me with it. class Material_Properties_Class_device { public: int max_variables; Logical * ...
0
votes
0answers
15 views

Is it possible to extend the range collection in VBA?

Is it possible to write an own method extending the range class (or collection. I'm new to it so I don't really know how MS calls it). In the end, it would be great if I could call my method like this ...
0
votes
0answers
15 views

Simplifying class structure of compiler

So i'm writing a compiler in java that translates my own language to the CUDA language. For this task i have written a grammar in ANTLR4, getting a lexer and parser. Now, ANTLR gives me a Listener ...
-1
votes
2answers
72 views

Call an method of a class in an array - Java

I am having a problem with a project. So basically what I have is a class Shape with some sub-class ( ShapeRectangle, ShapeTriangle, etc ). In each sub-class, I got an outputShape method: ...
1
vote
2answers
100 views

C# - Access another class methods

I have something like this: public class Map { class DataHandler { private int posX, posY; // Other attributes public int GetX() { return posX; } public int ...
7
votes
2answers
341 views

Why can't my program access the math methods in java?

I'm learning java for the first time. I wrote a simple program: public class Solver { public static void main(String[] args) { double angle = 1.5; double height = ...
2
votes
6answers
52 views

way of defining class in a namespace

I defined a class in a namespace in a header as follows #ifndef _c1_ #define _c1_ namespace classspace { class Aclass; } class Aclass { //body }; #endif _c1_ I added this header to ...
-1
votes
5answers
59 views

OOP eficiency when usign class in another class

Afternoon, I have a class called DB (class.pdo.php) that does all the handling on mysql queries using PDO and another class called user that I use to manage a login system. My question relates to ...
-2
votes
2answers
59 views

Can someone help me with this class [closed]

class database(object): def __init__(self): self.l = [] def insert(self, e): for i in range[len(self.l)]: if i == e: return self.l.append(e) Why is ...
3
votes
2answers
67 views

Python: how to “kill” a class instance/object?

I want a Roach class to "die" when it reaches a certain amount of "hunger", but I don't know how to delete the instance. I may be making a mistake with my terminology, but what I mean to say is that I ...
1
vote
2answers
50 views

Auto generate models classes in mvc from database

i heard that people use entity framework to generate model related classes from database. suppose if i do not want to use entity framework as data access layer rather i want to use MS data application ...
1
vote
2answers
63 views

What is the function of “(ClassName *)”

I have seen code statements that use '(ClassName *)' to reference certain objects, like in UITableViewCell *myCell = (UITableViewCell*)[self.view viewWithTag:1];. I have no idea what this means or ...
-2
votes
8answers
66 views

Using header file in C++ program

I have some question for coding C++ program with header file. This is my header.h file : #include <iostream> using namespace std; class Rectangle { public: Rectangle(double width, double ...
0
votes
3answers
57 views

“show” was not declared in this scope

I am getting error "show was not declared in this scope " while compiling below program even after declaring and defining. Don't know where i am wrong. Please suggest. Thanks #include < ...
-1
votes
1answer
33 views

Class array to view

I have the following question. In one of my classes i use in the contruct $this->view->title = $titlearray; This works in the add.php Now i want to do the same thing in the same class in an another ...
1
vote
1answer
59 views

Python: Classes that “talk” to each other

I'm a college student. I'm in my second comp sci class and we haven't got much past simply making classes and functions within them so I haven't really been able to make much use of the complicated ...
1
vote
1answer
43 views

How do I read numpy source?

I built it myself on Python 3.3, but I can't for the life of me find the class definition of numpy.array(). I've looked all through the code and even found the core C files, but where is the dang ...
-2
votes
1answer
69 views

How to make what is in a class public?

I have created my first class, which contributes to the code I've written for a GUI. However after any action performed buttons, the strings do not exist and are always underlined red, what do you ...
-1
votes
0answers
21 views

Java Entity Spawning Class [closed]

I'm working on my first Java game and I would like to know it there is a easy way to set up a class that will enable me to spawn different kinds of entities. (each one has it's own class) Right now ...
0
votes
2answers
26 views

Scope of PDO used in a function

I am using a structure like the one below - class foo{ . . . function bar($colID){ try{ $dbo = new PDO(get_db_DSN(), get_db_USR(), ...
0
votes
2answers
74 views

How to organize multiple arrays in one class? [closed]

This will eventually allow a user to look up a book by using a two digit number. The title however will only output if you input the correct number. Details about code wherever important info is ...
2
votes
4answers
45 views

Get all extended Classes in PHP

Say I got a class like: <? class ObjectModel { } and I got some other classes like: <? class SomeNewClass extends ObjectModel { } class SomeOtherNewClass extends ObjectModel { } Is there ...
0
votes
2answers
44 views

Class declarations

So I'm looking at the Ogre Character sample, and there's a class which is declared as class _OgreSampleClassExport Sample_Character : public SdkSample The classes identifier is Sample_Character and ...
0
votes
2answers
20 views

Using magic constants from another scope

I created a class Debug in which all properties and methods are static. Using late static binding I use this class as a logger of what is being done and at which moment (in fact I'm testing now ...
1
vote
2answers
45 views

Defining member functions inside the class' definition

I've always wondered why most codes and tutorial I've read always declare the member functions inside the class and then define it outside like this. class A{ A doSomething(); ...
0
votes
3answers
53 views

Adding a method to Java class in different file without extending the class

package com.companyxyz.api.person; public class Man { public var1; public var2; ... private static void createAuth() { ... } // public methods go here ... } I want ...
0
votes
0answers
12 views

Redim multidimensional array in Class Module

I have a private array in a class module. I figured out a rather unorthodox way to redim this array via a property Let in a class Module: This can be used when the population of array's initially is ...
0
votes
0answers
25 views

Show java class in a popup menu

I created a Plugin Project with the following plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution ...
0
votes
1answer
21 views

Getting values from cells in table using class. Jquery

How can I get values from cells in table using class? Col2, Col3, Col4 have common class "punkty". In Col5 I want set result of addition from Col2,Col3,Col4. In my recent solve, I'm getting string ...
7
votes
2answers
67 views

class substitution in php

Is there any way to make it work? See example : class car { function __construct($type){ switch ($type) { case 'big' : return new big_car(); ...
0
votes
2answers
62 views

Storing from one class to another in an array [closed]

I have to make a program which uses a different class for each part. For the first class: Quest1, I calculated the rate of growth in a population. Second class: Quest2, i have to store the growth into ...

1 2 3 4 5 379