Tagged Questions
The code-readability tag has no wiki summary.
17
votes
4answers
280 views
Preserve code readability while optimising
I am writing a scientific program in Python and C with some complex physical simulation algorithms. After implementing algorithm, I found that there are a lot of possible optimizations to improve ...
13
votes
10answers
562 views
Using { } to segment large blocks of code to improve code-readability - Good practice?
I'm considering the option of using anonymous { } code blocks to logically distinguish "code blocks" inside the same method call, something that (theoretically) should improve readability of the code.
...
13
votes
7answers
978 views
Gracefully avoiding NullPointerException in Java
Consider this line:
if (object.getAttribute("someAttr").equals("true")) { // ....
Obviously this line is a potential bug, the attribute might be null and we will get a NullPointerException. So we ...
9
votes
11answers
886 views
Is Code For Computers or for People?
Ultimately, code compiles down (eventually) into instructions for a CPU. Code, however, (in my humble opinion) is for human beings to read, update, and interact with. This leads me to the following ...
8
votes
9answers
216 views
How do you encourage fellow programmers to care about code readability? [closed]
I've noticed some programmers do not seem to have much desire to write clean, organized, and readable code. What are some good ways to encourage consistent indentation, good naming of variables and ...
8
votes
13answers
1k views
Why use base16 numbers in code when base10 numbers are more readable?
I have seen many people uses base16 numbers in code where a base10 number is more readable. Here is a c# code.
byte[] b = new byte[0x1000];
For me the below is more readable,
byte[] b = new ...
7
votes
6answers
936 views
Code-style for indent of multi-line IF statement in Python?
When indenting long if conditions, you usually do something like this (actually, PyDev indents like that):
if (collResv.repeatability is None or
collResv.somethingElse):
collResv.rejected = ...
7
votes
4answers
433 views
Best ways to format LINQ queries
Before you ignore / vote-to-close this question, I consider this a valid question to ask because code clarity is an important topic of discussion, it's essential to writing maintainable code and I ...
7
votes
8answers
503 views
Is there any tool to standardize format of C++ code?
I'm looking for a tool that works on Windows to reformat some C++ code in my codebase. Essentially, I've got some code I wrote a while ago that I'd like to use, but it doesn't match the style I'm ...
7
votes
15answers
497 views
Do I need to have meaningful names for loop control variables?
Code Complete book suggested, it is a good practice to use meaningful names for loop control variables.
For example:
for(int month=0; month < MONTHS_PER_YEAR; month++){
// processing
}
...
7
votes
7answers
314 views
Most elegant way to deal with singles/plurals?
Say you're making a blog software, and want to show the number of comments an entry got. You might do it this way:
[Entry title]
[Content........]
[ <?php print($numComments;) ?> Comments]
...
6
votes
9answers
121 views
How do I find methods?
Here's a somewhat general computer question. I've always been able to follow the LOGIC of programming, but when I go to code something, I always find that I don't know some method or another to get ...
6
votes
5answers
294 views
A better way to test the value of an Option?
I often find myself with an Option[T] for some type T and wish to test the value of the option against some value. For example:
val opt = Some("oxbow")
if (opt.isDefined && opt.get == ...
5
votes
1answer
70 views
What's the normal way of organising a header file in Objective-C?
I do start off organising my .h files with the best intentions but somehow they get disgustingly messy.
Below is an example (which isn't that bad, but i've seen much worse!). I've tried grouping ...
5
votes
4answers
431 views
How can this 6 line method be refactored to be more readable?
I'm trying to clean up this ridonkulously ugly method here, that's crying out for refactoring, but I'm not sure what kind of structure would do this best (i.e. a case statement, or simply a carefully ...
5
votes
10answers
996 views
Studies on optimal code width?
If you enable the "View Right Margin" in your IDE of choice, it is likely that it will default to 80 characters. I tend to change it to 120 for no reason other than it was the standard at a company I ...
4
votes
3answers
233 views
Which is fast : Query Syntax vs. Loops
The following code provides two approaches that generate pairs of integers whose sum is less than 100, and they're arranged in descending order based on their distance from (0,0).
//approach 1
...
4
votes
4answers
161 views
How can I implement NotOfType<T> in LINQ that has a nice calling syntax?
I'm trying to come up with an implementation for NotOfType, which has a readable call syntax. NotOfType should be the complement to OfType<T> and would consequently yield all elements that are ...
3
votes
4answers
76 views
How Do I Avoid Line-Break Padding?
My biggest gripe with HTML is that line breaks add a tiny bit of space between elements. (jsFiddle.)
This can screw up layouts where child elements are sized to exactly fit their parents.
I read ...
3
votes
1answer
305 views
How can I decouple this C# worker thread code from the main thread for shared data variables?
How could I modify the below code such that I could, for better readability in code:
a) move the "workThreadMethod()" into it's own class
b) not have any code in this worker thread class reference ...
3
votes
2answers
281 views
How can I hide tracing code in Visual Studio IDE C#?
As I'm starting to put more tracing in my code, i'm realizing it adds a lot of clutter. I know Visual Studio allows you to hide and reveal code, however, i'd like to be able group code into "tracing" ...
3
votes
9answers
387 views
General programming - else or else if for clarity
In a situation where a variable could have two different values, and you do something if its one, something differnent if its the other, would you just do:
if(myVariable == FIRST_POSSIBLE_VALUE) { ...
2
votes
4answers
51 views
Working with IComparable.Compare without magic numbers
I really hate working with IComparer - to this day, after years of working with .Net, I still get regularly confused by those 1s and -1s.
Can I somehow replace the Compare result values with some ...
2
votes
8answers
97 views
How should I deal with null objects in a using block?
Given a situation like this:
using (var foo = CreateFoo()) {
if (foo != null) {
// do stuff
}
}
I would like to avoid the nested if. Sadly, the obvious solution is not possible ...
2
votes
1answer
60 views
How verbose should my variable names be? [closed]
How would you recommend setting the balance between easily and clearly understood variable/function/etc names and not having names be too long?
For example, is something like ...
2
votes
11answers
129 views
How to make this code more readable
This is a part fo php code, which use the contentArray, which is a JSON, and generate the UI to the user, it generate html tags, also, it generate js code too.... It works, but I think the code is ...
2
votes
5answers
182 views
is this an improvement or am I missing the point? [closed]
I find most example code on the web to be unnecessarily verbose and cryptic. Here is one example, of something I recently needed to learn:
// from ...
2
votes
4answers
241 views
avoid a lot of if-else checks
I am working on a moderately large C file where I need to do processing for 3 different exclusive conditions. (if condition 1 is present do this, if 2 is present do something else and likewise). So, ...
2
votes
5answers
175 views
Neatest/most idiomatic way to rewrite this If in C#
I have this if-else statement which does what I want. What it's doing is pretty straightforward as you should be able to tell.
if (width != null && height != null)
{
if (top != null ...
2
votes
3answers
114 views
Should I include files included in another header?
Most often when creating multiple classes inside a program that use each other, I like to include only the minimum number of header files I need to reduce clutter.
For example, say class C inherits ...
2
votes
2answers
226 views
Does “var” keyword hampers code readability? [closed]
I just started using Resharper. One of its features is that it suggests changes to the code based on, i suppose, good coding practices.
One of the changes it suggested is to change the variable type ...
2
votes
3answers
459 views
Parsing big XML file with SAX parser, the class is becoming bloated and unreadable - How to fix this?
This is purely a code readability related question, the performance of the class is not an issue.
Here is how I am building this XMLHandler :
For each element that is relevant to the application, I ...
1
vote
1answer
33 views
What is the best way to format long chained methods?
What is the best way to format code with chained methods? Especially if it goes on for a long time? If you have a chain of three or so, you can put it on one line, but it gets cumbersome after you ...
1
vote
1answer
112 views
How to quickly understand if code is maintainable or not?
I have got task to code review several mln lines of code to determine if it is reasonable for 5 team members to be able to understand and maintain the project over the next few years. So what we have ...
1
vote
1answer
153 views
About code-readability
Not being an experienced C++ programmer, I try to keep my programs readable.
Whe possible I put functions and classes outside the Main.cpp in other cpp and header files.
I started doing the same with ...
1
vote
1answer
75 views
Grabbing data with relations. 1 big query or afew small queries
Suppose I have a table structure like
I want to grab all user metas
is it better to do a big query joining all tables in the image ...
SELECT [columns ...] FROM usermetasections LEFT JOIN ...
1
vote
0answers
122 views
Python Shelve Module Memory Consumption
I have been assigned the task of reading a .txt file which is a log of various events and writing some of those events into a dictionary.
The problem is that the file can sometimes get bigger than ...
1
vote
2answers
80 views
How To Write Readable If Statements For Input's Validation?
I'm encountered silly, but still significant problem. I'm creating validation for "Sign Up"-like page. I need to check that inputted values aren't harmful and fit my needs. Thanks to Fuel framework ...
1
vote
3answers
115 views
Storing Hash Data Externally in Perl
I'm currently working to refactor a script that has a reliance on three hashes (simple hashes), initialized at the beginning of the script. In total, these hash values take up over a hundred lines in ...
1
vote
2answers
191 views
How to enumerate through the DataTables of a DataSet starting at the second table in the collection using C#
A for loop starting at index 1 is an obvious answer. I'm sure there are many other ways to do this. But what is the most readable way?
The question is using C# 4.0. LINQ is optional.
1
vote
12answers
235 views
C#: Extension methods and the Not operator Best Practice
I have an array of strings and I wish to find out if that array does not contain a certain string. I can use the not operator (!) in conjunction with the Contains method like so:
if ...
1
vote
6answers
235 views
What C# language features help you to reduce lines of code and improve readability? [closed]
I came across a C# language feature today courtesy of ReSharper, the ?? operator. This helped make the code even more concise than my initial attempt. See below for iteration in improving ...
1
vote
5answers
95 views
“Number line” style of comparisons
I recently read in Code Complete that the recommended way of handling expressions that involve numbers is to order them like a number line.
The book has 2 examples:
if ( (MIN_ELEMENTS <= i) ...
1
vote
3answers
125 views
Patterns for declaring functions for greater readability
In C++ functions needed to be declared before they were called. This could be worked around with function signatures but for the most part this is no longer required in newer programming languages, ...
1
vote
7answers
145 views
Pattern to catch exception from sections of code (while not making eyes bleed)
I have a section of code that looks like this:
try
{
classVar = functionCall(input, sEnum.First);
classVar = functionCall(input, sEnum.Second);
classVar = functionCall(input, sEnum.Third);
}
...
0
votes
2answers
25 views
Function with multiple exit-points: is it a good way to do?
during programming with VBScript I write a lot of error-check code in functions before function start to do actions. So, if some pre-reqierements wan't met, then I do "Exit Function". So, for example:
...
0
votes
0answers
92 views
Is it easier to read code like this? [closed]
I am trying different way to make code easier to read. I use a few inline functions on this one. Is it easier to read and get the logic? My idea is to
write a prototype/flowchart
write ...
0
votes
1answer
47 views
In Ruby on Rails, what kind of design pattern is to use false to denote don't do DB look up and nil to denote ok to look up?
In Restful Authentication, I found that current_user is quite intricate that, when @current_user is set to false, then it means don't try to find user again (usually from DB), while nil means that's ...
0
votes
7answers
120 views
Code structure: should I use lots of functions to increase readability?
My question has Bash and PowerShell scripts in mind, but I suppose it applies to other languages as well.
It is my understanding that the purpose of a function is to perform the same (or a very ...
0
votes
1answer
32 views
Optimization in Common Decalaration
Its a 3-tier ASP.NET Website Project
In Data Layer there is class "Common Decalaration" in which lot of common things are mentioned.
Something this way :
public class CommonDeclartion
{
#region ...