0
votes
3answers
56 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 :: …
5
votes
2answers
81 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?
…
2
votes
1answer
26 views
Loading .swc assets into array, in pure Actionscript 3 project
Hello,
I know how to get Flash CS4 symbols into Flash Builder via .swc.
The class names become available in the main class, but I can only instantiate those one by one, writing ea …
1
vote
4answers
162 views
C++ Classes - Pointers question
I had a quiz at school and there was this question that I wasn't sure if I answered correctly. I could not find the answer in the book so I just wanted to ask you.
Point* array[10 …
0
votes
1answer
36 views
a basic javascript class and instance using jquery “$(this)” for XML parser
I am (slowly) writing an XML parser for some "site definition" files that will drive a website. Many of the elements will be parsed in the same manner and I won't necessarily need …
2
votes
3answers
43 views
How do you get the name of a generic class using reflection?
How do you get the name of a generic class using reflection
eg
public class SomeGenericClass<T>
{
}
SomeGenericClass<int> test = new SomeGenericClass<int>();
…
1
vote
4answers
113 views
C++ Class Inheritance problem
Hi I have two classes, one called Instruction, one called LDI which inherits from instruction class.
class Instruction{
protected:
string name;
int value;
public:
…
-1
votes
5answers
156 views
C++ new operator. Creating a new instance
I'm having some trouble creating an object in C++. I create a class called Instruction, and I am trying to create a new instance, but I get compiler errors.
Class code:
class Ins …
0
votes
4answers
63 views
<list> retreving items problem with iterator
I have a list of type Instruction*. Instruction is a class that I made. This class has a function called execute().
I create a list of Instruction*
list<Instruction*> instL …
0
votes
8answers
238 views
Template Classes in C++ … a required skill set?
I'm new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move th …
1
vote
2answers
82 views
Referencing classes in Python
Hi all
I'm having a spot of bother with Python (using for app engine). I'm fairly new to it (more used to Java), but I had been enjoying....until now.
The following won't work!
…
0
votes
3answers
73 views
Initializing all the classes ?? Is this good ?
Hello, I am a PHP beginner. I have developed a social networking website similar to Orkut in PHP.
The basic program flow of my website is redirect everything to index.php
The ind …
1
vote
2answers
38 views
Mootools “Extends” plus “Implements”
Hi,
I like to write my code slim and sexy (on the performance and memory side), I am using Mootools and was wondering if I was using it the correct way, also you can help me by te …
0
votes
3answers
62 views
Getting and terminating class’s/threads in C#
okay, so here is what im doing:
class Connection
{
public int SERVERID;
private Thread connection;
public Connection()
{
connection = new Thread(new Thread …
1
vote
3answers
47 views
JSON with classes?
Is there a standardized way to store classes in JSON, and then converting them back into classes again from a string? For example, I might have an array of objects of type Question …
