11
votes
8answers
1k views
Class diagram examples for RPG (Role Playing Game)
Does anyone know where I can find examples of class diagrams for RP game development? Something similar to here would be quite useful. I'm not looking for things I can slavishly copy, but just for …
10
votes
3answers
106 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 …
9
votes
8answers
998 views
Class declared inside of another class in C#
I am working on some legacy code and have come across something that I'm not sure of. We have a class y that is declared inside of another class x. Class y is only ever used inside of class x but my …
6
votes
8answers
388 views
C# / .NET : when structures are better than classes?
Duplicate of: When to use struct in C#?
Are there practical reasons to use structures instead of some classes in Microsoft .NET 2.0/3.5 ?
"What is the difference between structures and classes?" - …
6
votes
7answers
402 views
Does JQuery or JavaScript have the concept of classes and objects?
I found the following code somewhere, but I am not understanding the code properly.
ArticleVote.submitVote('no');return false;
Is ArticleVote a class and submitVote() a function of that class?
Or …
6
votes
5answers
328 views
Multiple .class files generated for a class?
Out of curiosity, why are sometimes multiple Java .class files generated for a class after compilation? For example, my application has six classes. For one class, a total of 10 .class files has been …
6
votes
9answers
448 views
C# Class/Object visualisation software
In Visual Studio 2005 and prior you could export your code to Visio and view the relationships between the objects and what methods, properties and fields it had. This was great as it allowed you to …
6
votes
6answers
263 views
Questions about Structs
MSDN says that a class that would be 16 bytes or less would be better handled as a struct [citation].
Why is that?
Does that mean that if a struct is over 16 bytes it's less efficient than a class or …
6
votes
7answers
768 views
Why should/shouldn’t I use the “new” operator to instantiate a class, and why?
I understand that this may be construed as a "what's your preference" question, but I really want to know why you would choose one of the following methods over the other.
Suppose you had a super …
6
votes
11answers
669 views
How many classes should a programmer put in one file?
In your object-oriented language, what guidelines do you follow for grouping classes into a single file? Do you always give each class a seperate file? Do you put tightly coupled classes together? …
6
votes
7answers
566 views
What is the best way to emulate “classes” in Javascript? (with or without a framework)
Update: I've wikified this so it can become a more useful resource.
What is the best way to emulate classes (and namespaces) in Javascript?
I need to create a Javascript library and have limited …
5
votes
2answers
87 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 …
5
votes
2answers
162 views
Dictionary with classes?
In Python is it possible to instantiate a class through a dictionary?
shapes = {'1':Square(), '2':Circle(), '3':Triangle()}
x = shapes[raw_input()]
I want to let the user pick from a menu and not …
5
votes
8answers
511 views
How do you determine the size of an object in C++
For example, say I have a class Temp:
class Temp
{
public:
int function1(int foo) { return 1; }
void function2(int bar) { foobar = bar; }
private:
int foobar;
};
When I create an object of class …
5
votes
1answer
635 views
Java Generics Wildcarding With Multiple Classes
I want to have a Class object, but I want to force whatever class it represents to extend class A and implement interface B.
I can do:
Class<? extends ClassA>
Or:
Class<? extends …
