Tagged Questions
12
votes
6answers
491 views
What is the origin of magic number 42, indispensable in coding? [closed]
Update:
Surprised that it is being so heavily downvoted...
The question is coding-related and before asking this question I have googled for "42" in combination with:
...
1
vote
2answers
79 views
type of declaration when dealing with the polymorphism [closed]
I would like to hear some thoughts about a design problem that I have at the moment.
First of all, some definitions:
class Base
{
// other code
virtual void method( Base*& param);
};
class ...
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 ...
0
votes
0answers
14 views
When it's ok for views to load data from server
It's a puristic issue I guess.
Inside my ios app I have a view (FacebookAvatarsView) that displays avatars of people who attend an event.
That view is only a small element on the screen and has only ...
-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 ...
6
votes
2answers
56 views
How do I prevent users from importing x from a submodule when it exposed in the parent using __all__
Consider the following scenario:
You have a module M defined in m.py containing a function f.
It can be called like this:
import M;
M.f()
The module grows to a size where it is impractical to ...
0
votes
2answers
51 views
Is it acceptable/desire If I throw an error from callee rather than from caller
Is it acceptable/desire If I throw an error from callee rather than from caller? Or should I get the error info from callee and then throw the exception from caller? Which one is preferred/desire way?
...
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 ...
1
vote
1answer
134 views
Enum method overriding
Recently Ive found Enums defined like the following
public Enum MyEnum{
ONE
{
@Override public int getSomething(){
return 1;
}
},
TWO
{
@Override public ...
98
votes
9answers
4k views
Good or bad practice? Initializing objects in getter
I have a strange habit it seems... according to my co-worker at least. We've been working on a small project together. The way I wrote the classes is (simplified example):
[Serializable()]
public ...
7
votes
3answers
518 views
Performance of reflection: quality byte code in JVM
Edit 2:
Does a program with a fully object-oriented implementation give high performance? Most of the framework is written with full power of it. However, reflection is also heavily used to achieve it ...
1
vote
0answers
38 views
Abstracted GUI Design Model
I am developing a front end GUI that people use to communicate with equipment that we manufacturer and sell. Our equipment (black box) talks over ethernet to our GUI: reporting status, provides the ...
0
votes
1answer
68 views
How to write code document architecture
I have moved to new project and I am expected to write document which explains entire code, so that if any new developer joins project will understand code by looking at document. Code is written in ...
4
votes
3answers
179 views
As a language, is Python limited due to no end statement?
Since Python uses tabs spacing to indicate scope (and as such, has no end of } symbols), does that limit the language in any way from having particular functionality?
Note: I'm not talking about ...
2
votes
5answers
98 views
Who is responsible for checking for NullReferenceExceptions?
For example if you pass a car into a sub that makes use of a car who should be checking for null references?
Should I even bother wrapping this code in the below if statement? It seems quite ...
-1
votes
3answers
119 views
Should I refactor a method that requires bool parameters [closed]
Any thoughts and/or opinions out there on using bool types as parameters into methods?
Some articles have expressed opinions that discourage the use of bool types as parameters to methods. Their case ...
0
votes
4answers
242 views
best practice for gui and actionlistener
I would know know what is the best practice for putting actionlistener in java? for example in my class a is my gui, (design) then class b would be my actionlistener? or is it better in one one page ...
1
vote
1answer
74 views
Code solution to avoid if else conditions
I am wondering if anyone can suggest me a design pattern or best way to code the below problem.
1) I have an array list of books like the below
list.add(new Book(title, author);
list.add(new ...
2
votes
3answers
112 views
What's the best style, class method or global function?
It's often the case that I write a class, along with helper functions that are intimately connected to that class. For my current, a Window class to wrap some win32api calls, along with functions to, ...
0
votes
0answers
39 views
Remove legacy systems but creating the same crap all over again [closed]
Probably all programmers will be in this situation at least one time in their career; you have to create a system which will replace an old legacy system. You start enthusiastic, alone or in a team. ...
0
votes
2answers
139 views
Qt Aplication “within” application
Qt 4.8.2, windows 7 x64 (But I should be thinking about this as a generic implementation, not OS dependant -if possible-)
This is a conceptual question and also about implementation.
I have a (Very) ...
6
votes
3answers
132 views
When to use which - multiple methods, multiple parameters, or an options parameter
This question is coming from a javascript point of view, but it certainly could apply to other languages.
I have been running into this more and more lately, and was wondering if there was a best ...
0
votes
1answer
189 views
How to avoid calling the database again when I already have all I need in the result of the SQL call
In my application I have a complex database structure. In order to generate the JSON response for a call, I need to get data from many joined tables.
I created a SQL query that fetched all the data I ...
1
vote
2answers
458 views
Finalize method guidelines and best practices in C#
I have recently encountered an issue that is related to code running in the Finalize method overload.
I am mostly aware of issues that are related to memory management/performance, but i am ...
1
vote
4answers
111 views
Dynamic typing design : is recursivity for dealing with lists a good design?
Lacking experience with maintaining dynamic-typed code, I'm looking for the best way to handle this kind of situations :
(Example in python, but could work with any dynamic-typed language)
def ...
2
votes
8answers
568 views
Why do you use underscore when coding and when? [closed]
I've been coding for like 3 years now and havent noticed that some people use underscore (_) sometimes.
Question: Why should I use underscore and when? Is it part of code design or what?
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 ...
0
votes
1answer
58 views
Is usage on objc 'iskKindOfClass:' an indication of bad design?
Is the objective-c 'isKindOfClass:'/'isMemberOfClass:' methods considered as ugly as the java 'instanceof'?
2
votes
3answers
567 views
Which UML Book do you Recommend to Read First ? [closed]
I am trying to fully understand UML in order to organize my ideas, classes, code .. etc.
Usually, In big projects, I end up with whats known as spaghetti-code because as most people, new ...
2
votes
5answers
127 views
Got stuck while designing inheritance, Which one is correct? [closed]
Trying to write a trivial application, But I have stuck into one of the inheritance problem,
Which one of these is correct? specifically which one should be correct based on particular scenario?
A).
...
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 ...
4
votes
5answers
402 views
What are some of the disadvantages of using a reference instead of a pointer?
Given a class "A" exists and is correct. What would be some of the negative results of using a reference to "A" instead of a pointer in a class "B". That is:
// In Declaration File
class A;
class B
...
9
votes
15answers
998 views
Is an Initialize method a code smell?
I'm coding a bunch of systems right now. They do not derive from a common interface.
Some example systems: MusicSystem, PhysicsSystem, InputSystem, et cetera.
Currently, MusicSystem loads a lot of ...
3
votes
6answers
1k views
What's the Scala way to implement a retry-able call like this one?
Still the newbie in Scala and I'm now looking for a way to implement the following code on it:
@Override
public void store(InputStream source, String destination, long size) {
ObjectMetadata ...
5
votes
7answers
331 views
OO Design Advice - toString
So I got the Address class:
class Address {
private String streetAddress;
private int number;
private String postalCode;
private City city;
private State state;
private ...
2
votes
2answers
57 views
How to check “modified” state: an extra field, or == operator?
I'm designing a new service that takes two strings, and may or may not change them and returns the (possibly) modified value.
For instance:
public class Phrases
{
public string Phrase1 { get; ...
11
votes
4answers
254 views
How to design a program with many configuration options?
Lets say I have a program that has a large number of configuration options. The user can specify them in a config file. My program can parse this config file, but how should it internally store and ...
0
votes
1answer
107 views
a good list of nouns that are commonly used in class names?
I'm talking about the secondary noun in a class name. Things like...
Provider
Factory
Repository
Controller
etc...
Is there a list that's well understood? Naming classes is important for future ...
1
vote
5answers
167 views
Smarty and PHP syntax in one document - recommended?
I'm creating a website using Smarty and PHP syntax; I've learnt PHP code can be used in Smarty at http://www.smarty.net/docs/en/language.function.php.tpl
However, is this a good idea - mixing Smarty ...
4
votes
3answers
426 views
Java: URL or String?
Is there any merit (coding style, OOP best practice, etc.) in working with an instance of java.net.URL as opposed to java.lang.String when I can be reasonably certain that a URL is valid anyway ...
1
vote
4answers
162 views
Initialize member variables in a method and not the constructor
I have a public method which uses a variable (only in the scope of the public method) I pass as a parameter we will call A, this method calls a private method multiple times which also requires the ...
3
votes
3answers
193 views
Can we refactor these methods?
I have classes with methods implemented as follow:
void methodOne() {
try {
getHelper().doActionOne();
} catch ( Exception ex ) {
throw new CustomException( ex );
}
}
...
1
vote
3answers
160 views
Inheritance heirarchy - how to split class
i have a class which draws a graph for a particular entity , the graphs nodes are clickable and as such i have specific methods for the clicked item to show approopriate information.
As this is just ...
0
votes
1answer
263 views
Avoiding boilerplate code in a one-to-one association relationship
Although I'm programming in C++, this is more of a general question about design.
I noticed that when I have objects in a one-to-one association relationship, there tend to be a lot of common methods ...
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
3answers
87 views
How to model apps using declarations (interfaces) only?
This is something I really like doing after I gave the problem some thought. So just creating classes, enums, interfaces, structs, etc to define interfaces in the sense of programming.
But when doing ...
1
vote
3answers
59 views
The “Dial-able” Power Principle (aka?)
As a designer, I like providing interfaces that cater to a power/simplicity balance. For example, I think the LINQ designers followed that principle because they offered both dot-notation and ...
1
vote
6answers
239 views
Array vs Private class for internal representation: Java Ethics
I recently had a homework question where we were supposed to work with a chess board, and place a number of queens on the board.
The question was trivial in terms of difficulty, but what I wanted to ...
2
votes
2answers
353 views
Question about best practices and Macros from the book 'C++ Coding Standards'
From Herb Sutter and Andrei Alexandrescu's 'C++ Coding Standards', Item 16: Avoid Macros under Exceptions for this guideline they wrote:
For conditional compilation (e.g.,
system-dependent ...



