Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

96
votes
21answers
4k views

How will I know when to create an interface?

I'm at a point in my development learning where I feel like I must learn more about interfaces. I frequently read about them but it just seems like I cannot grasp them. I've read examples like: ...
59
votes
27answers
3k views

How do you find a needle in a haystack?

When implementing a needle search of a haystack in an object-oriented way, you essentially have three alternatives: 1. needle.find(haystack) 2. haystack.find(needle) 3. searcher.find(needle, ...
55
votes
31answers
5k views

Is UML practical?

In college I've had numerous design and UML oriented courses, and I recognize that UML can be used to benefit a software project, especially use-case mapping, but is it really practical? I've done a ...
49
votes
23answers
4k views

How do you design object oriented projects?

I'm working on a large project (for me) which will have many classes and will need to be extensible, but I'm not sure how to plan out my program and how the classes need to interact. I took an OOD ...
42
votes
6answers
17k views

Python's use of __new__ and __init__?

I'm just trying to streamline one of my classes and have introduced some functionality in the same style as the flyweight design pattern. However, I'm a bit confused as to why __init__ is always ...
38
votes
18answers
2k views

List<BusinessObject> or BusinessObjectCollection?

Prior to C# generics, everyone would code collections for their business objects by creating a collection base that implemented IEnumerable IE: public class CollectionBase : IEnumerable and then ...
33
votes
10answers
979 views

Classes to avoid (code complete)

I am somewhat confused about a paragraph in the code complete book. In the section "Classes to avoid" it reads: "Avoid classes named after verbs A class that has only behavior but no data is ...
31
votes
7answers
618 views

Large scale usage of Meyer's advice to prefer Non-member,non-friend functions?

For some time I've been designing my class interfaces to be minimal, preferring namespace-wrapped non-member functions over member functions. Essentially following Scott Meyer's advice in the article ...
23
votes
6answers
2k views

OO Javascript constructor pattern: neo-classical vs prototypal

I watched a talk by Douglas Crockford on the good parts in Javascript and my eyes were opened. At one point he said, something like, "Javascript is the only language where good programmers believe ...
19
votes
7answers
1k views

Is this bad oop design?

I have class called Chicken and in Chicken I have some methods, so in another class where I instantiate and call methods on Chicken, I might do something like this: Chicken chicken = new ...
19
votes
17answers
1k views

Design pattern for class with upwards of 100 properties

What advice/suggestions/guidance would you provide for designing a class that has upwards of 100 properties? Background The class describes an invoice. An invoice can have upwards of 100 attributes ...
19
votes
10answers
16k views

How would you code an efficient Circular Buffer in Java or C#

I want a simple class that implements a fixed-size circular buffer. It should be efficient, easy on the eyes, generically typed. EDIT: It need not be MT-capable, for now. I can always add a lock ...
16
votes
10answers
865 views

Do we need a new GoF book?

Someone asked What is a Wrapper? and it got me thinking - where would I point a new developer in search of some foundational description of useful patterns? The GoF book has long been a foundational ...
15
votes
5answers
492 views

To implement a property or to implement a subclass

I've got a class called List_Field that, as the name suggests, builds list input fields. These list input fields allow users to select a single item per list. I want to be able to build list input ...
14
votes
4answers
299 views

What is the logic behind having a mutable and immutable versions of classes like NSArray, NSDictionary etc in Objective C?

Why do common collection classes in Objective C like NSString, NSArray, NSDictionary etc have a mutable as well as an immutable version. What is the logic behind defining them separately? Performance, ...
14
votes
6answers
427 views

What's the most reliable way to prohibit a copy constructor in C++?

Sometimes it's necessary to prohibit a copy constructor in a C++ class so that class becomes "non-copyable". Of course, operator= should be prohibited at the same time. So far I've seen two ways to ...
14
votes
5answers
944 views

C#. Struct design. Why 16 byte is recommended size?

I read Cwalina book (recommendations on development and design of .NET apps). He says that good designed struct has to be less than 16 bytes in size (for performance purpose). My questions is - why ...
14
votes
5answers
533 views

In C#, what is the purpose of marking a class static?

In C#, what is the purpose of marking a class static? If I have a class that has only static methods, I can mark the class static or not. Why would I want to mark the class static? Would I ever NOT ...
14
votes
12answers
997 views

How do I break my procedural coding habits?

I recently read an interesting comment on an OOP related question in which one user objected to creating a "Manager" class: Please remove the word manager from your vocabulary when talking ...
14
votes
2answers
8k views

Nested Java enum definition - does declaring as static make a difference?

I have an interface - here's a nicely contrived version as an example: public interface Particle { enum Charge { POSITIVE, NEGATIVE } Charge getCharge(); double getMass(); ...
13
votes
8answers
247 views

Help on implementing how creatures and items interact in a computer role playing game

I am programming a simple role playing game (to learn and for fun) and I'm at the point where I'm trying to come up with a way for game objects to interact with each other. There are two things I am ...
13
votes
4answers
2k views

What is the purpose of a marker interface?

What is the purpose of a marker interface?
13
votes
11answers
3k views

How to decide between C# static and non-static methods?

[Edit] My original-question was "Why to decide between static and non-static? Both do the same..." Unfortunately it was edited to a C#-specific question what I really wanted to avoid. So, let me do ...
12
votes
3answers
923 views

why is java.lang.Throwable a class?

In java adjectives ending in -able are interfaces Serializable, Comparable etc... So why is Throwable a class? Wouldn't exception handling be easier if Throwable were an interface? (Edit: e.g. ...
12
votes
5answers
286 views

Is it reasonable to have a fair amount of public properties in a class?

Or in more specific words, is it "ok" to not be relying on setters and getters? I'm dealing with a class that checks the availability of rooms and sets public properties of which there are more than ...
12
votes
12answers
537 views

Should a c# class generate instances of itself?

I have a class that defines a CallRate type. I need to add the ability to create multiple instances of my class by reading the data from a file. I added a static method to my class CallRate that ...
11
votes
2answers
441 views

How do I design a class in Python?

I've had some really awesome help on my previous questions for detecting paws and toes within a paw, but all these solutions only work for one measurement at a time. Now I have data that consists ...
11
votes
6answers
245 views

Which is the better C# class design for dealing with read+write versus readonly

I'm contemplating two different class designs for handling a situation where some repositories are read-only while others are read-write. (I don't foresee any need for a write-only repository.) ...
11
votes
9answers
397 views

Is it expensive to create objects in .Net?

I have just refactored a colleague's code that, roughly, looked like this... public class Utility public void AddHistoryEntry(int userID, HistoryType Historytype, int companyID) { // Do ...
11
votes
4answers
2k views

PHP5: const vs static

In PHP5, what is the difference between using const and static? When is each appropriate? And what role does public, protected and private play - if any.
11
votes
8answers
1k views

OO Design Question — Parent/Child(ren) — Circular?

I'm fairly new to the OO design process, so please bear with me.... I have two entities that I need to model as classes, call them Parent and Child (it's close enough to the actual problem domain). ...
11
votes
1answer
4k views

Howto design for extension

There is a Checkstyle rule DesignForExtension. It says: if you have a public/protected method which is not abstract nor final nor empty it is not "designed for extension". Read the description for ...
11
votes
6answers
9k views

C#: Alias a class name?

i want to create an alias for a class name. The following syntax would be perfect: public class LongClassNameOrOneThatContainsVersionsOrDomainSpecificName { ... } public class MyName = ...
10
votes
7answers
437 views

C# generics - Can I make T be from one of two choices?

Suppose I have the following class hierarchy: Class A {...} Class B : A {...} Class C : A {...} What I currently have is Class D<T> where T : A {...} but I'd like something of the form ...
10
votes
4answers
9k views

Create class diagram from c++ source?

Is there any free tools available for generating class diagram from c++ source files and if possible for mfc source files too.
9
votes
9answers
171 views

Question About Where To Position Try And Catch statements

I've used try and catch statements as an easy way to keep my code running without things crashing (I would wrap everything in a big try). Recently, I've wanted to start using try and catch statements ...
9
votes
5answers
336 views

In C#, use of value types vs. reference types

My questions are: When should we use value types and when reference types? What are the advantages and disadvantages of one over other? What if one uses reference types everywhere? Is there any harm ...
9
votes
7answers
233 views

design class aggregation - stack allocation vs dynamic memory allocation

Please have a look at the two simplified examples of designing a class aggregation below. Solution 1 Header // need include, forward declaration is not enough #include "door.h" class CGarage { ...
9
votes
3answers
240 views

C#. Where struct methods code kept in memory?

It is somewhat known where .NET keeps value types in memory (mostly in stack but could be in heap in certain circumstances etc)... My question is - where is the code of the struct? If I have say 16 ...
9
votes
6answers
540 views

Single Responsibility Principle: do all public methods in a class have to use all class dependencies?

Say I have a class that looks like the following: internal class SomeClass { IDependency _someDependency; ... internal string SomeFunctionality_MakesUseofIDependency() { ... ...
8
votes
1answer
130 views

Class hierarchy of tokens and checking their type in the parser

I'm attempting to write a reusable parsing library (for fun). I wrote a Lexer class which generates a sequence of Tokens. Token is a base class for a hierarchy of subclasses, each representing ...
8
votes
4answers
84 views

Design dilemma: who should handle disposable parameter?

If my class uses disposable resource in it's constructor (DbConnection if it matters) should I implement IDisposable in my class and dispose DbConnection object, or let user handle disposal of ...
8
votes
2answers
121 views

Why can't you have require* statements in a class definition?

Possibly Related: Why don't PHP attributes allow functions? Pardon me if this has been asked before, but why can you not have something like the following: class foo { require_once ...
8
votes
8answers
384 views

Is it true I should not do “long running” things in a property accessor?

And if so, why? and what constitutes "long running"? Doing magic in a property accessor seems like my prerogative as a class designer. I always thought that is why the designers of C# put those ...
8
votes
7answers
3k views

Class Designer in Visual Studio - is it worth it?

Does anybody use the Class Designer much in Visual Studio? I have downloaded the Modeling Power Toys for 2005 and have been impressed with what I've seen so far. The MSDN Class Designer Blog doesn't ...
7
votes
5answers
515 views

Improve this PHP Bitfield Class for settings/permissions?

I have been trying to figure out the best way to use Bitmask or Bitfields in PHP for a long time now for different areas of my app for different user settings and permissions. The farthest I have ...
7
votes
5answers
252 views

.NET ORMs need virtual, and can't deal with sealed?

I am just getting started with .NET ORMs, to the point where I haven't even decided between Entity Framework and NHibernate. But in both cases, I'm running into a problem in that they seem to want me ...
7
votes
5answers
224 views

What free tools can help untangle hairy C++ sources?

I've been hired to fix bugs etc on a huge messy set of C++ sources. These make multiple .so and executables. Written by several people, there are classes upon classes upon classes with many short ...
7
votes
6answers
343 views

Should I use struct or class?

I am in a classic design dilemma. I am writing a C# data structure for containing a value and measurement unit tuple (e.g. 7.0 millimeters) and I am wondering if I should use a reference type or a ...
7
votes
11answers
388 views

Class members that are objects - Pointers or not? C++

If I create a class MyClass and it has some private member say MyOtherClass, is it better to make MyOtherClass a pointer or not? What does it mean also to have it as not a pointer in terms of where ...

1 2 3 4 5 16