Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
14answers
692 views

Multiple If-else or enum - which one is preferable and why?

Here is the original code: public class FruitGrower { public void growAFruit(String type) { if ("wtrmln".equals(type)) { //do watermelon growing stuff } else if ...
11
votes
4answers
195 views

Design of LINQ code

What are your suggestions for designing linq code in project? Especially, I`m interesting in code design of big and complex linq queries? For example, you know, that you need to write a lot of huge ...
11
votes
6answers
551 views

When is a class too long?

When is a function too long? is a subset of this question, I think. What are a few good metrics for determining that a class is too long? I'm rerevising a set of code acceptance guidelines for a ...
11
votes
9answers
396 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 ...
10
votes
7answers
294 views

Keeping everything loosely coupled and extendable: Too many layers, too small ROI?

I (now more than ever) see developers write huge amounts of layers such as: implementation PresentationLayer -> interface IMyDTO -> implementation MyDTO -> ...
8
votes
6answers
358 views

C# How to execute code after object construction (postconstruction)

As you can see in the code below, the DoStuff() method is getting called before the Init() one during the construction of a Child object. I'm in a situation where I have numerous child classes. ...
6
votes
3answers
131 views

Using block galore?

I'd like your opinion on the following subject: Imagine we have a method that is responsible of achieving one specific purpose, but to do so, it needs the support of an important number of locally ...
6
votes
4answers
187 views

.NET: bool vs enum as a method parameter

Each time I'm writing a method that takes a boolean parameter representing an option, I find myself thinking: "should I replace this by an enum which would make reading the method calls much easier?". ...
6
votes
15answers
418 views

Refactor/rewrite code or continue?

I just completed a complex piece of code. It works to spec, it meets performance requirements etc etc but I feel a bit anxious about it and am considering rewriting and/or refactoring it. Should I do ...
5
votes
5answers
161 views

validate first or try catch?

Let's say I have a function that looks like this: public void saveBooking(/* some inputs */) { //save into database } Before saving into database, I have to do various validations. What I can ...
5
votes
6answers
302 views

Which design pattern is most appropriate?

I want to create a class that can use one of four algorithms (and the algorithm to use is only known at run-time). I was thinking that the Strategy design pattern sounds appropriate, but my problem is ...
4
votes
6answers
91 views

C++ object hierarchy dependencies code design

I want to make two classes: object and object_manager but I'm confused about how they should see/include each other. I've heard that it's forbidden for two headers to include each other and if my code ...
3
votes
4answers
89 views

How to store host address, username and password of database and other secure information while coding an application in Java for that application?

I am developing a standalone application in Java and MySql as back-end. As this application will be used for professional purpose. Friends I have following questions in coding. Problem 1 : As my ...
3
votes
6answers
111 views

Is it a good idea to have global definitions in a header file?

Say I have a struct like this one: struct Point { int x; int y; } Say also that I need to declare an initialized Point: static struct Point origin = {0, 0} My question is where should I ...
3
votes
2answers
110 views

Efficiently maintain slightly different (logging/non-logging) functions

I have a number of algorithms for community detection on graphs that I want to now visualise them. This visualisation requires me to 'hijack' these algorithms while they execute and log what they are ...
3
votes
1answer
90 views

12 things any piece of code is doing

Short Version: What items are in the list of 12 things that categorise what any piece of code is doing? Long Version: In a talk by Kathleen Dollard at DDD8a on the topic of the Managed Extensibility ...
3
votes
4answers
203 views

One function argument or instance variable [Clean Code book]

I'm reading Uncle Bob's "Clean Code" book and constantly finding contradictory statements. Here is one of them. Book claims that we should use as few function arguments as possible, so it's more ...
3
votes
2answers
145 views

I don't like Python functions that take two or more iterables. Is it a good idea?

This question came from looking at this question on Stackoverflow. def fringe8((px, py), (x1, y1, x2, y2)): Personally, it's been one of my pet peeves to see a function that takes two arguments ...
3
votes
7answers
1k views

Should you avoid static classes?

are static classes considered bad practice? I read an article about this a couple days ago (can't find it, sorry) which basically said that having static classes (especially those 'helper' classes) ...
2
votes
1answer
113 views

How and when to dispose/garbage collect a singleton instance

I am using a Singleton instance created out of a nested class. This instance holds some static collections which are cleared when the Singleton is disposed, but the problem is I get a reference to ...
2
votes
4answers
92 views

Can casts be completely avoided with a good design?

I'm wondering whether situation exists where casting is completely necessary. I'm talking here about casts between classes, not basic types. Is casting (be it C++ style like static_cast or ...
2
votes
5answers
73 views

Reasons for and against objects handling their own persistence

I am looking at different options for persistence modelling in Windows Phone using Isolated Storage. One of the ideas I have come up with was the concept of each object handling its own (were it makes ...
2
votes
1answer
64 views

Preventing a lot of parameters in a WCF service?

I'm working on a web service that is basically a wrapper around an Oracle Stored Procedure and it currently has 11 parameters. It's not that there are 11 arguments, but I feel there should be a ...
2
votes
4answers
193 views

Separating business logic

I have a customers Class with properties and methods defined. At present it contains methods for any type of task associated with Customers. For example, it contains a method "InsertOrUpdateCustomer". ...
2
votes
8answers
188 views

Does DRY necessarily mean a better performing application?

I've been repeatedly told not repeat myself when programming. I've come across a scenario where I'm wondering whether to write two functions, each for a particular purpose, or a single function that ...
2
votes
3answers
197 views

How do i refacter a 100 function class

I haven't counted but its a lot. How do i refacter a 100 function class? This is for a website, i use to have a PageView, Backend, DB layer where PageView calls the backend, every backend public ...
2
votes
1answer
475 views

Better code: Extend LINQ class, or create separate helper class?

I'm trying to figure out what the better/cleaner/more maintainable way is, for the following problem. My "Customer" class is generated via LINQ from the database. The customer has a special activation ...
1
vote
1answer
96 views

Too Much Logic in Controller vs Model Calling Each Other

I encountered a code design problem while working on a small application. (I'm a beginner by the way) In terms of feature, there are a list of tables, each having 2 seats. If two players sit down at ...
1
vote
1answer
19 views

Where should I put this object property/attribute

I am creating a testing program. The three main objects I have right now are Tests, Questions and Answers. I have three tables in the database, tests, questions and answers and a FK from questions ...
1
vote
6answers
149 views

Using strings instead of enums?

Is it common place to use a string for comparison as opposed to an enum?
1
vote
5answers
777 views

C++: How to design a utility class?

The title says it all. But I don't know if I should go for static methods, just a header, a class, or something else? What would be best practice? But, I don't want to have an instance of a utility ...
0
votes
2answers
63 views

I need a design explanation of c# not allowing assignment operator overload [closed]

I really want to know the design explanation of c# not allowing the assignment operator overloading. I am sure there must be a more than valid one and I need to know it. the answer is actually here ...
0
votes
1answer
15 views

Combining a describing and one array with data

I know, the title is not that helpful, but I'll try to explain, what I am looking for. My main problem is, that I'm looking for an easy way to combine two arrays. $lang = array('de' => 'german', ...
0
votes
2answers
33 views

Code Design Question: AJAX Queries, one script to handle all?

I have been designing a fairly extensive website and have put together a script that strictly handles ajax queries. The script is mostly a 600 lines switch statement. Now this is getting to be huge ...
0
votes
1answer
41 views

Who owns the method in a sequence diagram?

Say we have the diagram: I pretty much wonder whether it's known by the diagram who owns the methods. For instance: Is pickup a method of Waiter? Is then serve food a method of Patron? More ...
0
votes
1answer
79 views

Javascript decorate from one place in code

I'm facing the following code design problem: I need to track a number of ajax-actions on my site and I have a reachGoal(TARGET_NAME) analytics function that I need insert to every function I want to ...
0
votes
2answers
120 views

Opening/Closing a Database connection in an apsx page for an IVR system

I am currently developing an IVR system, my question is more on a development side of basic architecture and opening/closing a database connection. As you can see from the code below, in the ...
0
votes
2answers
166 views

Create a Utility Class that show an UIAlertView

I have this Alert: There is no internet connection available, please try again.` and I have to many code blocks that can produce this message and I want to put the UIAlertView in one class that ...
0
votes
2answers
121 views

Unsure how to come up with a good design

I am having trouble coming up with a good design for a group of classes and was hoping that someone could give me some guidance on best practices. I have kept the classes and member functions generic ...
0
votes
2answers
43 views

Code infrastructure for accessing different properties of multiple elements (vector graphics editor)

I am currently working on a small vector graphics editor (sort of) and facing a code design question, wondering how it would be solved in an elegant and straightforward manner. If anyone has a good ...
0
votes
8answers
291 views

Class Vs Pure Array Representation

We need to represent huge numbers in our application. We're doing this using integer arrays. The final production should be maxed for performance. We were thinking about encapsulating our array in a ...