0
votes
1answer
49 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
0answers
7 views
fmdb sqlite-Wrapper - How to count results
How do i count the results in FMResultSet?
I would be very thankfull for any help :)
2
votes
2answers
209 views
Determining what classes are defined in a PHP Class file
Given that each php file in our project contains a single class definition... any suggestions for determining what class was defined within the file?
I know I could just regex the file for class …
0
votes
5answers
75 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 …
1
vote
1answer
17 views
Java Templates array of Template Type in Template
I would like to implement a template which contains an array of the template Type. Is there a way to do something similar to what I have outlined in my sample code? The problem is in the line where …
3
votes
2answers
62 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() …
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 …
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
8answers
180 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 …
2
votes
4answers
40 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
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
4answers
41 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 …
9
votes
3answers
86 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 …
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 …
0
votes
3answers
64 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 …
