0
votes
11answers
147 views
Is it possible to define multiple classes in just one .cpp file?
I'm working on a project for school and the instructor insists that all code go into one .cpp file (for easier grading on his part). I would like to define multiple classes within this file. Will I …
0
votes
2answers
15 views
How do I create my own Classes/Objects in Flex?
When I try to do this in an AS CDATA block, it tells me I can't have a class declared within a class (the MX:Application itself). Makes sense. But where and how do I do it?
0
votes
1answer
67 views
Python raw_input into dictionary declared in a class…
Hi, I am incredibly new to Python and I really need to be able to work this out. I want to be asking the user via raw_input what the module and grade is and then putting this into the dictionary …
0
votes
5answers
80 views
C++ error C2819: type ‘List’ does not have an overloaded member ‘operator ->’
I keep getting this error -
error C2819: type 'List' does not have
an overloaded member 'operator ->'
i can't figure out why? help?
Main.cpp -
#include <iostream>
#include …
0
votes
1answer
69 views
C#: Are struct members more performant?
On a blog entry, Luca Bolognese ponders this idea about structs vs. classes as member fields:
The reason to use a struct is to not
allocate an additional object on the
stack. This allows this …
10
votes
3answers
92 views
Lifting class instance in Haskell
Is there a way to "lift" a class instance in Haskell easily?
I've been frequently needing to create, e.g., Num instances for some classes that are just "lifting" the Num structure through the type …
1
vote
2answers
82 views
JavaScript Classes and Variable Scope
I'm relatively new to JS and I'm having issues properly emulating OOP principles.
I guess I have two questions. Question the first is regarding the many ways to declare variables.
Say I have a …
3
votes
2answers
64 views
Using Singletons in PHP
I want to use a DB Singleton i created, in several Methods of a Class. Is it more appropriate to Instantiate the Singleton individually in each Method, or to Instantiate it through the __constructor() …
3
votes
8answers
181 views
Whats the best way to name id & classes in CSS and HTML
When naming classes and ids for CSS what is the best method to use. In this case I need there to be some kind of naming convention so that other people can pick up rules and understand how to name …
0
votes
4answers
43 views
Extending the MySQLi class
I want to be able to make classes which extend the MySQLi class to perform all its SQL queries.
$mysql = new mysqli('localhost', 'root', 'password', 'database') or die('error connecting to the …
2
votes
4answers
42 views
Php abstract class site configuration
Hi, i have a config class which is an abstract class. I would like to set it up so it automatically detects which server the site is on and then assigns appropriate constants. I get an error on line …
1
vote
5answers
141 views
What is the difference between -> and :: in PHP?
Hi,
This thing has been bugging me for long and I can't find it anywhere!
What is the difference when using classes in php between :: and ->
Let me give an example.
Imagine a class named MyClass …
0
votes
3answers
66 views
Classical vs Prototypal… how are they so different?
for example in PHP
class foo{
function foo($name){ //constructor
$this->name=$name;
}
function sayMyName(){
return $this->name;
}
}
class bar extends foo{
function …
1
vote
3answers
35 views
Use LINQ generated classes directly?
LINQ will generate a set of classes from the SQL files. Should these be used directly, or should they be wrapped in another class so the model is not so dependent on the implementation?
0
votes
1answer
33 views
Javascript Pseudoclass handling in php
Hi all!
I am working with javascript pseudoclasses in the sense of:
class Foo
---->getName()
---->setName()
---->....
So i can have collections of them to operate with in client …
