Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

74
votes
17answers
2k views

True-way solution in Java: parse 2 numbers from 2 strings and then return their sum

Quite a stupid question. Given the code: public static int sum(String a, String b) /* throws? WHAT? */ { int x = Integer.parseInt(a); // throws NumberFormatException int y = Integer.parseInt(b); ...
38
votes
11answers
2k views

Why write `sizeof(char)` if char is 1 by standard?

I was doing some C coding and after reading some C code I've noticed that there are code snippets like char *foo = (char *)malloc(sizeof(char) * someDynamicAmount); So I want to ask what's more ...
24
votes
17answers
2k views

Good practices in writing code?

I am an engineering student, not computer science though, and have been coding in Matlab for like 4 years. However only recently I have experienced writing long codes, or the need for connection of ...
14
votes
7answers
356 views

How extensible should code actually be?

I've just started a new job and one of the things my new boss talked to me about was code longevity. I've always coded to make my code infinently extensible and adaptable. I figured that if someone ...
13
votes
20answers
2k views

if/else, good design

Is it acceptable/good-style to simplify this function: bool TryDo(Class1 obj, SomeEnum type) { if (obj.CanDo(type)) { return Do(obj); } else { return false; } ...
13
votes
6answers
611 views

string.Join on a List<int> or other type

I want to turn an array or list of ints into a comma delimited string, like this: string myFunction(List<int> a) { return string.Join(",", a); } But string.Join only takes ...
11
votes
3answers
149 views

Static Throw class: good or bad practise

Throwing exceptions often follows the following pattern: if(condition) { throw exception; } you check a condition, and if the condition is satisfied, you throw an exception. So, i was wondering if ...
11
votes
3answers
470 views

Haskell data types usage good practicies

Reading "Real world Haskell" i found some intresting question about data types: This pattern matching and positional data access make it look like you have very tight coupling between data and ...
10
votes
9answers
318 views

Is it acceptable to use exceptions instead of verbose null-checks?

I recenly encountered this problem in a project: There's a chain of nested objects, e.g.: class A contains an instance variable of class B, which in turns has an instance variable of class C, ..., ...
8
votes
5answers
194 views

Is This Use of the “instanceof” Operator Considered Bad Design?

In one of my projects, I have two "data transfer objects" RecordType1 and RecordType2 that inherit from an abstract class of RecordType. I want both RecordType objects to be processed by the same ...
8
votes
5answers
219 views

OOP intermediate level tutorial

I am very eager to learn in depth OOP concepts and most importantly how they can be applied in "real life". So far, I have read many references and many tutorials online but they all lack something: ...
8
votes
5answers
135 views

Programming practice with a function

I have a function that returns an integer, however I would like to expand it to add a new param to it. With this param, however, the function would have to return an array. Is it bad practice to ...
8
votes
1answer
183 views

Python - good practice to catch errors

I have these files in my project: - main.py - module1.py - module2.py main is the main file that will be directly execute in console. module1 will be imported into main and throws ...
8
votes
3answers
641 views

Examples of beautiful Javascript

A good way to improve as a developer is to look at well-written code. What examples of beautiful, well-architected Javascript have you encountered? Note that I am not looking for a debate about the ...
7
votes
4answers
118 views

Comparing derived classes in C++ without dynamic casting or static downcasting

I'm trying to compare objects of a common base class together. The comparison should fail (output a failure string, for instance) in any case when the two objects differ in class, or differ in values ...
7
votes
1answer
135 views

Capital letters for named patterns

In Mathematica built-in Symbols start with capital letters. Therefore it is accepted practice to not start user created symbol names with capital letters. How far should this restriction be extended ...
7
votes
3answers
252 views

How to avoid casting from interface to class

In trying to design a collision detection component for a game, I came up with the following solution. I define an interface ICollideable that looks something like: interface ICollideable { ...
7
votes
9answers
468 views

Is it bad practice to store SQL queries in resource file?

I have a web application that communicates with SQL server. Rather than hard-coding all of the query strings, I have opted to store them in a global resource file. Is that considered bad practice? On ...
6
votes
4answers
177 views

avoiding RTTI in OO design

I recently saw an OO design question on some forum and started thinking of using RTTI. However this must be bad design but I am unable to think of an alternative. Here is the simple question : ...
6
votes
2answers
81 views

Which approach is better for supplying compile time constants to a function ? Function argument vs. Template parameter

I have logging function being called at several places throughout the code. To every log, I have to supply 2 compile time constants. There are 2 approaches to accomplish: (1) Function argument: ...
6
votes
4answers
127 views

Idiomatically iterating over a 2 (or higher) dimensional sequence in Clojure

Is there a 'proper' way to iterate over a two-dimensional sequence in Clojure? Suppose I had a list of lists of numbers, like this ((1 2 3) (4 5 6) (7 8 9)) and I wanted to generate a new ...
6
votes
7answers
176 views

getters and setters performing additional logic

I have a Java class which represents the correlation between two elements (typical POJO): public class Correlation { private final String a; private final String b; private double ...
6
votes
2answers
155 views

Why not to use closures for object attributes?

I'm currently writing objects in javascript and I would like to do it in a clear, nice way, using best practices etc. But I'm bothered that I must always write this. to address attributes, unlike in ...
6
votes
6answers
115 views

Implementation of equals(): compare against implemented interface or implementing class?

I'ver been wondering how to best implement equals() for a family of classes that all implement the same interface (and the client is supposed to work only with said interface and never to know about ...
6
votes
4answers
133 views

Static function leading to more static functions

I have a class that has a few functions that are useful on their own, which are static. Now these functions depend on other functions that are not useful on their own (but don't interact with class ...
6
votes
3answers
199 views

Good design: How use fields of superclass [closed]

Possible Duplicate: Java protected fields vs public getters If i have that class B extends A and in A i have some fields that i use also in B, it's better make this fields protected and ...
6
votes
8answers
388 views

Is there a “right” way to use php?

I have been learning php, by just plugging away at it. I was hoping someone could point me in the right direction in regards to security, flow and general best practices? Thanks. edit-- I suppose ...
6
votes
2answers
3k views

MVVM Focus To Textbox

How would I set focus to a textbox without specifying the name for that textbox? At the moment I am doing the following <Window FocusManager.FocusedElement="{Binding ElementName=Username}"> ...
5
votes
3answers
165 views

Is having to pass Context to most classes a sign of bad design?

Android is designed in such a way that in order for a method to read a resource, it must have a access to a Context. Since most of the classes in my application rely on the flexibility of string ...
5
votes
3answers
176 views

Making C++ Classes inherit from C Structs, Recommended?

I was recently doing some Windows Api coding (still doing it). And I was trying to find the best way to wrap the WNDCLASSEX into a C++ class, when I had this crazy idea, the WNDCLASSEX is a struct ...
5
votes
3answers
130 views

**kwargs vs 10 arguments in a python function?

I am starting out with python and trying to construct an XML request for an ebay web service: Now, my question is: Say, this is my function: def findBestMatchItemDetailsAcrossStores(): request ...
5
votes
4answers
276 views

Shall I use cerr

Is it in good style do use cerr in situation described below? try { cout << a + b; } catch(const IntException& e) { cerr << "Exception caught: " << ...
5
votes
6answers
348 views

Is the use of blank interfaces a bad design?

I'm considering creating an interface and applying it to all objects in a certain namespace. Scenario in which I would use this: I want to create a generic handler of those objects, and I'd like ...
5
votes
1answer
198 views

When Expando Class should be used in Google App Engine Apps?

What are the applications for Google App Engine Expando Class? And what are the good practices related to it?
5
votes
6answers
104 views

is it wasteful/bad design to use a vector/list where in most instances it will only have one element?

is it wasteful/bad design to use a vector/list where in most instances it will only have one element? example: class dragon { ArrayList<head> = new ArrayList<head> Heads; tail ...
5
votes
6answers
308 views

Where can a self-teacher learn general good programming habits and conventions?

A few mistakes and general childishness in early adulthood have left me in a situation where I work a menial job, with no possibility (in the near future) of attending school. I aspire to one day ...
5
votes
8answers
253 views

best practices - multiple functions vs single function with switch case

I have a situation where I need to perform several small (but similar) tasks. I can think of two ways to achieve this. First Approach: function doTask1(); function doTask2(); function doTask3(); ...
4
votes
3answers
98 views

How do you make inherited instance variables clear?

I've been working with some abstract classes and something feels off but I'm not sure what to do about it. Here's a simple example to explain my question: public abstract class Data { protected ...
4
votes
1answer
78 views

Javascript best practices, why to use comma to chain function/variable declarations?

I've been developing a plugin for jQuery "jQueryLog" to allow for debugging of chain selectors and return values. If you want to check it out, you can do it here This is already a second version. The ...
4
votes
5answers
126 views

extract common blocks into functions in C++

There's something I recurently struggle with while working on C++ code. Let's say I've got a method doing X, Y and then Z. Now I'd like to introduce another method that should do X, Y', Z. If that ...
4
votes
2answers
60 views

Working with Resources and User-defined Control Properties

I am creating a custom control and it is a button. It may has a type and a specified image according to its type. Its type may be: public enum ButtonType { PAUSE, PLAY } Now I can change ...
4
votes
6answers
321 views

Where can I find some C# source code that is worth learning from?

I hear a lot of people say that one of the best ways to learn to write good code is to read good code, dig through it, and figure out what it's doing. That's fine and all, but how do I know it's good ...
4
votes
5answers
597 views

C++ Vector Math and OpenGL compatable

Ok I've been doing lots of vector math stuff and wrote my own template for it. My requirements are lots of vector maths (addition, subtraction, scale, cross prod, and dot prod) also I need to be able ...
4
votes
2answers
87 views

What's the best way to handle source-like data files in a web application?

I have about 30 MB of textual data that is core to the algorithms I use in my web application. On the one hand, the data is part of the algorithm and changes to the data can cause an entire algorithm ...
4
votes
4answers
284 views

Storing simple hour/minute information in Java - best practice question

I've been looking at different methods to store time in Java and I can't quite find the right implementation for my needs. I want to store information about our courses schedule, this information ...
4
votes
1answer
107 views

Proper Implementation in the midst of no RValue implicit conversion

I ran into the problem that RValue does not allow implicit conversion. My questions is what implementation is better to "bypass" this limitation? Here is example code to illustrate the issue: ...
4
votes
1answer
286 views

Too many arguments in method calls

Lately I've been torn when trying writing classes regarding the number of parameters requested. A very simple constructor example: Burger(bun, meat, cheese, lettuce) this.bun = bun ...
4
votes
2answers
227 views

Question regarding the “Tell, don't Ask” idea

There is this famous quote that says Procedural code gets information then makes decisions. Object-oriented code tells objects to do things. — Alec Sharp The subject of the post is ...
4
votes
4answers
447 views

When is it appropriate to use CacheItemRemovedCallback?

I have a large data set that is updated once a day. I am caching the results of an expensive query on that data but I want to update that cache each day. I am considering using ...
3
votes
5answers
92 views

How to notify the programmer of a null argument?

So, I'm working on designing a class wherein if certain arguments to certain methods are null, either the method (or the object as a whole) won't work. I know that it'll throw a NullPointerException ...

1 2 3 4 5