Tagged Questions

Construct that is used as template for creating new objects. Class describes the state and behavior that the objects of the class all share.

learn more… | top users | synonyms (1)

217
votes
19answers
7k views

Why is OOP hard for me? [closed]

I have trouble writing OOP in PHP... I understand the concept but I never create classes for my projects... mainly because it's often a small project and nothing complex. But when I read OOP, it seems ...
118
votes
9answers
66k views

Static class variables in Python

Is it possible to have static class variables or methods in python? What syntax is required to do this?
100
votes
7answers
29k views

Structure Vs Class in C#

When you create an instance of a class with the new operator, memory gets allocated on the heap. When you create an instance of a struct with the new operator where does the memory get allocated, on ...
80
votes
9answers
41k views

When to Use Static Classes in C#

Here's what MSDN has to say under When to Use Static Classes: static class CompanyInfo { public static string GetCompanyName() { return "CompanyName"; } public static string ...
71
votes
14answers
25k views

What's the difference between struct and class in .Net?

I'm looking for a clear, concise and accurate answer. Ideally as the actual answer, although links to good explanations welcome.
63
votes
25answers
20k views

When should you use a class vs a struct in C++?

In what scenarios is it better to use a struct vs a class in C++?
58
votes
7answers
20k views

Best way to load module/class from lib folder in Rails 3?

Since the latest Rails 3 release is not auto-loading modules and classes from lib anymore, what would be the best way to load them? From github: A few changes were done in this commit: Do not ...
56
votes
7answers
9k views

Old style and new style classes in Python

What is the difference between old style and new style classes in Python? Is there ever a reason to use old-style classes these days?
51
votes
13answers
2k views

Why use partial classes?

I am new to partial classes and was wondering if someone could give me a "big picture" of why I would use them and what advantage I would gain in the process. Thx.
45
votes
6answers
8k views

How many Python classes should I put in one file?

I'm used to the Java model where you can have one public class per file. Python doesn't have this restriction, and I'm wondering what's the best practice for organising classes.
42
votes
8answers
9k views

Synthetic Class in Java

What is a Synthetic Class in Java? Why should it be used? and How can I use it?
40
votes
16answers
10k views

What are the differences between struct and class in C++

This question was already asked in the context of C#/.Net. Now I'd like to learn the differences between a struct and a class in C++. Please discuss the technical differences as well as reasons for ...
40
votes
8answers
58k views

How do you create a static class in C++?

How do you create a static class in C++? I should be able to do something like: cout << "bit 5 is " << BitParser::getBitAt(buffer, 5) << endl; Assuming I created the BitParser ...
39
votes
4answers
7k views

Does python have an equivalent to Java Class.forName()?

I have the need to take a string argument and create a class in python. In Java, I would use Class.forName().newInstance(). Is there an equivalent in python? Thanks for the responses. To answer ...
38
votes
3answers
2k views

What does “class :” mean in C++?

I've never seen it before. I thought it was a typo for "::sample", but when I saw it actually compiles I was very confused. Can anyone help me find out please? I don't think it's a goto label. void ...
38
votes
13answers
8k views

What's the best way to define a class in javascript

While I'm not entirely new to javascript I have very little knowledge when it comes to best practices. In particular, I prefer to use OOP in large scale projects like the one I'm working on right now. ...
37
votes
14answers
3k views

Use of .apply() with 'new' operator. Is this possible?

In JavaScript, I want to create an object instance (via the new operator), but pass an arbitrary number of arguments to the constructor. Is this possible? What I want to do is something like this ...
37
votes
9answers
8k views

'POCO' definition

Can someone define what exactly 'POCO' means? I am encountering the term more and more often, and I'm wondering if it is only about plain classes or it means something more?
36
votes
1answer
8k 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 ...
35
votes
4answers
667 views

Final arguments in interface methods - what's the point?

In Java, it is perfectly legal to define final arguments in interface methods and do not obey that in the implementing class, e.g.: public interface Foo { public void foo(int bar, final int baz); ...
34
votes
3answers
10k views

Scala equivalent of Java java.lang.Class<T> Object

The question is best explained by an example: In Java for a JPA EntityManager, I can do the following(Account is my Entity class): Account result = manager.find(Account.class, primaryKey); In ...
33
votes
5answers
22k views

C++ static constant string (class member)

I'd like to have a private static constant for a class (in this case a shape-factory). I'd like to have something of the sort. class A { private: static const string RECTANGLE = "rectangle"; ...
32
votes
3answers
803 views

defining “boolness” of a class in python

Why doesn't this work as one may have naively expected? class Foo(object): def __init__(self): self.bar = 3 def __bool__(self): return self.bar > 10 foo = Foo() if foo: print 'x' ...
32
votes
8answers
3k views

C#: Public Fields versus Automatic Properties

We're often told we should protect encapsulation by making getter and setter methods (properties in C#) for class fields, instead of exposing the fields to the outside world. But there are many times ...
32
votes
10answers
13k views

C++: Pointer to class data member

I came across this strange code snippet which compiles fine: class Car { public: int speed; }; int main() { int Car::*pSpeed = &Car::speed; return 0; } Why does C++ have this ...
31
votes
11answers
14k views

Can you create class properties dynamically in PHP?

Is there any way to create all class properties dynamically ? For example I would like to be able to generate all class attributes from the constructor and still be able to access them after the class ...
31
votes
7answers
6k views

How does Django Know the Order to Render Form Fields?

If I have a Django form such as: class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message = forms.CharField() sender = forms.EmailField() And I call the ...
29
votes
4answers
1k views

What is the difference between a class and a type in Scala (and Java)?

Scala Where can differences between a class and a type be observed in Scala and why is this distinction important? Is it only a consideration from the language design point-of-view or has it ...
29
votes
16answers
3k views

How do you implement a class in C?

Assuming I have to use C (no C++ or object oriented compilers) and I don't have dynamic memory allocation, what are some techniques I can use to implement a class, or a good approximation of a class? ...
28
votes
7answers
33k views

How to call a parent class's method from child class in python?

Stackers, I apologize for this question in advance. It must be a FAQ, but I don't seem to be able to find the answer. When creating a simple object hierarchy in python, I'd like to be able to ...
27
votes
7answers
4k views

C++: Will an 'empty' destructor do the same thing as the generated destructor?

Suppose we have a (toy) C++ class such as the following: class Foo { public: Foo(); private: int t; }; Since no destructor is defined, a C++ compiler should create one ...
27
votes
4answers
15k views

How do I use Linq to obtain a unique list of properties from a list of objects?

I'm trying to use Linq to return a list of ids given a list of objects where the id is a property. I'd like to be able to do this without looping through each object and pulling out the unique ids ...
24
votes
4answers
7k views

Python: Bind an Unbound Method?

In Python, is there a way to bind an unbound method without calling it? I am writing a wxPython program, and for a certain class I decided it'd be nice to group the data of all of my buttons together ...
23
votes
7answers
21k views

Java: Static Class?

I have a class full of utility functions. Instantiating an instance of it makes no semantic sense, but I still want to call its methods. What is the best way to deal with this? Static class? Abstract? ...
23
votes
22answers
2k views

Smelly class names?

In your experience, what are some "smelly" keywords in class or function names that might be warning signs of bad object-oriented design? I've found that classes containing the word Manager or Base ...
23
votes
7answers
2k views

How do I remove code duplication between similar const and non-const member functions?

Let's say I have the following class X where I want to return access to an internal member: class Z { // details }; class X { std::vector<Z> vecZ; public: Z& Z(size_t index) ...
22
votes
1answer
5k views

java: what is this: [Ljava.lang.Object;?

I get this when I call toString on an object I received from a function call. I know the type of the object is encoded in this string, but I don't know how to read it. What is this type of encoding ...
22
votes
7answers
2k views

What are the advantages that prototype based OO has over class based OO?

Why is class based OO so popular instead of prototype based OO? Do they teach the latter in schools? Though Javascript is prototype based, most people use it mostly functionally, or via frameworks ...
22
votes
3answers
8k views

C# - how enumerate all classes with custom class attribute?

Question based on MSDN example: http://msdn.microsoft.com/en-us/library/aa288454(VS.71).aspx Let's say we have some C# classes with HelpAttribute in standalone desktop application. Is it possible to ...
22
votes
7answers
14k views

How do you find all subclasses of a given class in Java?

How does one go about and try to find all subclasses of a given class (or all implementors of a given interface) in Java? As of now, I have a method to do this, but I find it quite inefficient (to say ...
22
votes
8answers
10k views

Static nested class in Java, why?

I was looking at the Java code for LinkedList and noticed that it made use of a static nested class, Entry. public class LinkedList<E> ... { ... private static class Entry<E> { ... } } ...
21
votes
1answer
312 views

Scala bomb? (like a zip bomb)

Please excuse the funny title, I am using it in analogy with "zip bomb". Is it possible to create a scala source file, that will, when compiled, produce a large number of class files (or a very large ...
20
votes
3answers
791 views

What's the c++ inline class?

I accidentally found that the Clang compiler allows : inline class AAA { }; in C++. What's this? PS. I have reported this to Clang mailing list cfe-dev@cs.uiuc.edu, and now waiting for reply. ...
20
votes
4answers
566 views

Why would you ever want a Java file with no public classes declared in it?

There is a statement in the book I'm reading for the SCJP qualification, it says : Files with no public classes have no naming restrictions That has made me ask, why would you ever want to do ...
20
votes
4answers
19k views

Uml class diagram enum

I am modeling a class diagram. An attribute of a class is an enumeration. How do i model this? Normally you do something like this: - name : string But how to do this with an enum?
19
votes
5answers
13k views

Java: Multiple class declarations in one file

In Java, you can define multiple top level classes in a single file, providing that at most one of these is public (see JLS ยง7.6). See below for example. Is there a tidy name for this technique ...
19
votes
2answers
11k views

Retrieving a c++ class name programatically

I was wondering if it is possible in C++ to retrieve the name of a class in string form without having to hardcode it into a variable or a getter. I'm aware that none of that information is actually ...
19
votes
12answers
3k views

What is the difference between Type and Class?

What makes a type different from class and vice versa? (In the general language-agnostic sense)
18
votes
1answer
450 views

What is the significance of the new Reference Classes?

Apparently John Chambers added Reference Classes to R in 2.12. There doesn't appear to be much information online yet, but they're calling them R5 classes, which implies they're on a level with S3 ...
18
votes
1answer
8k views

Android: Error inflating class

I'm new to Android development and I've been having an issue that I haven't been able to fix. I'm mostly using code from examples provided in the SDK so I'm not sure what's happening here. I'm simply ...

1 2 3 4 5 185