Tagged Questions
0
votes
4answers
35 views
Is it good style to embed Design Pattern names into Interface names? [closed]
Would it be good practice/style to embed design pattern names into appropriate interface lets say if its a decorator design pattern have the abstract decorator be named IDecorateInterfaceName or ...
0
votes
0answers
29 views
Is there a proper name for this interface pattern?
Let's say I have a generic interface like:
public interface IWorkBroker<TWork, TResult>
{
...
}
And then, for the sake of prettiness I do:
public interface IFooWorker : ...
-3
votes
1answer
67 views
Which 'Design Pattern' is appropriate for a class with a complex (multiple steps) configuration [closed]
Whenever a setup-wizard is used, then the user answers many different things until the real installation can be started. Comparing this with a class in my current project: I have a class that requires ...
0
votes
2answers
84 views
Good Design Pattern to use [closed]
Okay, I am having a bit of an issue trying to solve some problems, and I am trying to figure out what a good design pattern to use would be for fixing this problem.
I have a class called Kit. Inside ...
2
votes
2answers
67 views
Using reflection in a factory
I have a factory which can build many types of object and it may grow.
Would it be a good idea to use reflection to return all the different types instead of calling every method in the ...
-2
votes
2answers
50 views
why “only one return”? [duplicate]
Today I received code review comments from a senior developer, one thing he pointed out is that each function should have only one return statement. I wonder whether this is just code style issue or ...
3
votes
4answers
82 views
How to do not repeat myself or how to change a simple condition in a method?
I have a method, which I use multiple times in my implementation with very simple modifications. How can I avoid repeating myself?
...
while (!queue.isEmpty()) {
Element pivot = ...
1
vote
0answers
65 views
Elegant way to chain data transformations in Scala? [duplicate]
Suppose I have a list of functions, each expecting a certain type as input, and returning a value of the same type. For example a String.
The way these functions are used is in a chained fashion: the ...
3
votes
1answer
83 views
Using uncommon characters `$` and `_` in java Identifiers
Is there any catch in using these uncommon characters in Java identifiers?
From Java Language Specification
The "Java letters" include uppercase and lowercase ASCII Latin letters
A-Z ...
0
votes
3answers
84 views
design pattern to get rid of flags/enums in a multithreaded environment
Original program code to modify:
/this method is called periodically and it takes data from db, performs some ooperations on it, and puts the results in a file which is sent at the ends of all ...
1
vote
2answers
73 views
Design Pattern to Support the Transfer of a Rich Object using a Service-Oriented Architecture?
I have an Employee class that lives on the server and I wish to expose it in a web-service so that it can be consumed by a client.
Here is my class:
public class Employee
{
public CountryCode { ...
1
vote
4answers
151 views
Writing C++ “Scripts”
I am a solo developer on a large C++ library that I use for research (I'm a PhD student). Let's say the library has a bunch of classes that implement cool algorithms: Algorithm1, Algorithm2, etc. I ...
0
votes
2answers
147 views
Create a new object every time or keep a single one
We use primitive types without considering constructors and destructors. It may be because of that, most of them are stored in the stack. We also use struct like float3 for primitive types. We may ...
0
votes
6answers
159 views
Basic questions on programming in .NET and managing projects [closed]
I am badly in need of some general advice / guidance. I am a C# programmer by interest, not by profession. As such, I have never worked on any project with other programmers.
Anytime I need to ...
0
votes
1answer
60 views
Use getters/setters from framework/language or define your own explicit ones
Where I was working as an intern, working on a JavaScript front end project with Backbone.JS, I was using those getters and setters as provided by the framework (Backbone) but was asked to define my ...
0
votes
0answers
68 views
oops design for multithreaded application with nunit test cases
I always wonder, what ever code I am writing, if some microsoft employee or google would be writing how they would have written that?
What level of OOPS modulation they would have done? Dividing ...
1
vote
2answers
136 views
How to style or avoid multiple function return checks in a block of code
Lots of times in my code I have blocks like this:
close(READ);
dup(fd[READ]);
close(fd[READ]);
execl("ay", "bee", NULL);
How can I avoid a bunch of
if (close(READ) == -1) {
perror("close");
...
1
vote
2answers
98 views
Which pattern to select when trying to retrieve success/failed and a object from a method?
I'm discussing different implementing techniques with a colleague
Alternative A
User user;
if (users.TryGet(1, out user))
Console.WriteLine(user.ToString());
else
Console.WriteLine("Failed ...
12
votes
6answers
1k views
Is GetLastError() kind of design pattern? Is it good mechanism?
Windows APIs uses GetLastError() mechanism to retrieve information about an error or failure. I am considering the same mechanism to handle errors as I am writing APIs for a proprietary module. My ...
0
votes
1answer
352 views
As3: Transform tool architecture suggestions
I'm trying to get familiar with design patterns, modularity, unit testing and etc... (with ActionScript).
I'm developing a simple "Free transform tool" right now, just as a exercise, but I don't ...
0
votes
1answer
88 views
Does the `replace()` method of the String class violates Command-Query Separation?
Command Query separation recommends that every method should either be a Command that performs an action, or a Query that returns data to the caller :
But what about for instance the replace() method ...
6
votes
3answers
164 views
Is it good practice to use plurality to name collections? [closed]
Simply put, is it a good idea to name collections and composite objects using plurality?
class PandaBears {
PandaBear[] bears;
class PandaBear {
}
}
My concern is that the class names are ...
3
votes
6answers
189 views
Programming Pattern or coding style with multiple ifs/switches
I have a table with some ids, and i want in default.aspx to open a certain page.aspx with a form, depending on the id.
What i have now is:
if(id_table ==1) {
response.redirect("PageBla.aspx");
}
...
4
votes
2answers
167 views
Good style to call advanced constructor from unparametrized constructor?
I was just discussing with some colleagues about Java constructors, design-patterns and good way to initialize objects with a unparametrized constructor if I normally await some parameters.
One of ...
0
votes
1answer
120 views
What is the coding standard and design pattern followed by mango blog based on CF
We are looking forward to migrating our ColdFusion project into a new MVC architecture and are evaluating many frameworks and design patterns.
I found that the coding standard and design patterns ...
4
votes
1answer
290 views
Ocaml: Bad style, all clauses in this pattern-matching are guarded
I get a "Error: Warning 25: bad style, all clauses in this pattern-matching are guarded"
What does "guarded" mean?
My code has pattern matching-
match z with
| y when List.length z = 0 -> ...
0
votes
2answers
99 views
What are the correct class/interface names for a publish/subscribe pattern?
I have this interface to let someone listen to a certain event
interface XXX
{
void subscribe( string event, func callback );
void unsubscribe( string event, func callback );
}
Also, I have ...
3
votes
6answers
78 views
When to declare methods as private
I am looking for specific and exact rules to determine how a method's visibility can be declared. This is not language agnostic, it applies to the standard OOP languages.
1
vote
2answers
194 views
Overuse of redefining primitive data types?
My current project code base has every unit and its friend refined.
Extract :-
...
typedef int m; // meter
typedef int htz;
typedef int s; // second
...
Good or Bad?
I hate it! Its a pain, there ...
2
votes
5answers
307 views
Setters returning the instance reference. Pattern or anti-pattern?
I was thinking about code structure, and thinking about setters. This use to be void methods, so why don't use some possible return value, to enable some new code structure.
My idea was to change all ...
2
votes
4answers
1k views
Javascript: Configuration Pattern
Problem:
A Javascript function needs few parameters to work with:
function kick(person, reason, amount) {
// kick the *person* with the *amount*, based on the *reason*
}
As there's no way to ...
2
votes
1answer
49 views
What best practices apply to property setters that refer to contained objects that might be null?
I'm working with a class that exposes a contained object's properties for data binding purposes. I ran into a couple lines of code that smell, but I'm not sure the best way to improve them.
Class ...
1
vote
5answers
343 views
Asp.net design patterns
I'm a junior developer, who knows the basics already and have some experience as well, but when it comes to building a project from ground up I'm useless in terms of writing a good maintainable code. ...
4
votes
4answers
229 views
How to deal with the idea of “many small functions” for classes, without passing lots of parameters?
Over time I have come to appreciate the mindset of many small functions ,and I really do like it a lot, but I'm having a hard time losing my shyness to apply it to classes, especially ones with more ...
6
votes
3answers
323 views
Working with entity framework, preferred way?
Suppose we have created Entities model, what is preferred way to work with it? I'm personally couldn't make up my mind..
Using ModelAdapter :
public statiŃ Product[] GetProducts()
{
...
0
votes
1answer
23 views
What is the recommended way to control changes of properties of an object
Assume we have the following interface:
@interface ColoredView : NSView {
NSColor *color;
}
@property (copy) NSColor *color;
- (id)initWithColor:(NSColor *)aColor;
@end
And we want view to ...
15
votes
2answers
2k views
Gang of Four - Design Patterns - are those pattern samples coded in outdated way?
So to clarify my question... each pattern in infamous GoF book - Design Patterns
Elements of Reusable Object-Oriented Software - has its code samples in C++.
Are those up to date? Or does nowadays ...
0
votes
2answers
130 views
Big picture or guide on programming related topics?
I was wondering if someone could give a big picture of how the following topics and others not mentioned are related:
"code reuse"
"refactor"
"design pattern"
"coding/programming standard/style"
...
...
2
votes
5answers
459 views
Elegant pattern for mutually exclusive keyword args?
Sometimes in my code I have a function which can take an argument in one of two ways. Something like:
def func(objname=None, objtype=None):
if objname is not None and objtype is not None:
...
-2
votes
6answers
702 views
Full website pages in just one page!
hi
I am working on a great website (social network with php) and I've decided to create only one php page, (index.php), but this php page will contain php if conditions and statments of the $_GET ...
4
votes
8answers
3k views
Switch statements are bad? [closed]
I recently learned that switch statements are bad in OOP, perticularly from "Clean Code"(p37-39) by Robert Martin.
But consider this scene: I'm writing a game server, receiving messages from clients, ...
1
vote
2answers
427 views
Tips for a light PHP Framework
I'm trying to write down some concrete ideas for a light framework (on PHP5), with the purpose to handle a lot of requests and to make it scale well in terms of high traffic eventualities.
I've ...
2
votes
1answer
159 views
Attribute lists or inheritance jungle?
I've got 2 applications (lets call them AppA and AppB) communicating with each other.
AppA is sending objects to AppB.
There could be different objects and AppB does not support every object.
An ...
2
votes
5answers
258 views
Is it better to have lot of interfaces or just one?
I have been working on this plugin system. I thought I passed design and started implementing. Now I wonder if I should revisit my design. my problem is the following:
Currently in my design I have:
...
2
votes
5answers
648 views
How to simulate multiple inheritance without interfaces?
How can I simulate multiple inheritance in C# without using interfaces. I do believe, interfaces abilityes are not intended for this task. I'm looking for more 'design pattern' oriented way.
1
vote
2answers
134 views
Can someone cite a good reference for programming with exceptions?
I prefer to have the "rc" error-code return style of error management. I agree that this presents challenges that are better served by throw-catch, however, I still feel that I am not designing and ...
19
votes
4answers
3k views
Strategy Pattern with no 'switch' statements?
I've been doing some reading on the Strategy Pattern, and have a question. I have implemented a very basic Console Application below to explain what I'm asking.
I have read that having 'switch' ...
1
vote
2answers
82 views
General Programming: When a set of objects are managed by another object, what do you call it?
I'm looking for help identifying this design pattern and learning the "typical" vocabulary it uses:
I'm working on a project in PHP, and I've created a thin ORM layer that saves generic objects to ...
1
vote
4answers
184 views
Where to store feedback UI data in ASP.NET MVC 2?
I'm really new to both ASP.NET MVC and the MVC pattern generally.
For context, I'm currently running .NET 4.0, MVC 2.
I know that MCV 2 has a bunch of built in features for:
validation (both ...
4
votes
3answers
302 views
exception for notifying that subclass should implement a method in python
suppose I want to create an abstract class in python with some methods to be implemented by subclasses. (in Python)
for example:
class Base():
def f(self):
print "Hello."
...

