1
vote
3answers
29 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?
1
vote
2answers
69 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 …
2
votes
4answers
33 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 …
0
votes
4answers
36 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 …
7
votes
3answers
69 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
62 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
5answers
138 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
0answers
48 views
How to tell difference between python class and object? [closed]
Possible Duplicate:
How to identiy whether a variable is a class or an object
I have a function which accepts 'things' which it calls.
def run_it(thingy):
result = thingy(something)
…
2
votes
3answers
35 views
Css Selector problem
How do I do a css selector that selects a div that has the class of "someButton" AND "current"?
.someButton .current { /* select current with the parent div of .someButton, correct? */
Please help …
3
votes
8answers
174 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
3answers
65 views
How to find all classes of a particular interface within an assembly in .net
I have a scenario whereby I want n amount of classes to look at the same data and decide if any work needs to be done. Work is done by a team, and multiple teams can work on the data at the same time. …
0
votes
4answers
61 views
Sharing methods between two implementations of a virtual base class in C++
I have a virtual base class and two classes that implement the various methods. The two classes have the same functionality for one of the methods. Is there away I can share the implementation between …
0
votes
3answers
117 views
An error with Haskell classes I fall all the time and can’t understand
Hi,
there's an error I come across all the time but can't understand how to make it right. An example of code that gives me this error is:
class Someclass a where
somefunc :: (Num b) => b …
5
votes
2answers
82 views
(javacript) what are prototypes?
What is a prototype for a javascript class? In other words, what is the different between
Example.prototype.method {}
and
Example.method{}
when defining the Example class?
edit: for those …
