Top 15+ Best Practices for Writing Super Readable Code

Top 15+ Best Practices for Writing Super Readable Code,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

Twice a month, we revisit some of our reader's favorite posts from throughout the history of Nettuts+. Code readability is a universal subject in the world of computer programming. It's one of the first things we learn as developers. This article will detail the fifteen most important best practices when writing readable code.

List of 15+ Best Practices for Writing Super Readable Code

1. Commenting & Documentation
2 Million+ WordPress Themes & Plugins, Web & Email Templates, UI Kits, and More
3. Consistent Indentation
4. Avoid Obvious Comments
5. Code Grouping
6. Consistent Naming Scheme
7. DRY Principle
8. Avoid Deep Nesting
9. Limit Line Length
10. File and Folder Organization
11. Consistent Temporary Names
12. Capitalize SQL Special Words
13. Separation of Code and Data
14. Alternate Syntax Inside Templates
15. Object-Oriented vs. Procedural
16. Read Open Source Code
17. Code Refactoring

1. Commenting & Documentation

IDE's (Integrated Development Environment) has come a long way in the past few years. This made commenting on your code more useful than ever. Following certain standards in your comments allows IDE's and other tools to utilize them in different ways. That's one of the best practices for writing super readable code.
 
1. Commenting & Documentation,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
The comments I added at the function definition can be previewed whenever I use that function, even from other files. Here is another example where I call a function from a third-party library: In these particular examples, the type of commenting (or documentation) used is based on PHPDoc, and the IDE is Aptana.

2 Million+ WordPress Themes & Plugins, Web & Email Templates, UI Kits, and More


2 Million+ WordPress Themes & Plugins, Web & Email Templates, UI Kits, and More,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
Download thousands of WordPress themes and plugins, web templates, UI elements, and much more with an Envato Elements membership. Get unlimited access to a growing library to millions of creative and code assets. That's one of the best practices for writing super readable Code.
 
code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

3. Consistent Indentation

3. Consistent Indentation,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
I assume you already know that you should indent your code. However, it's also worth noting that it is a good idea to keep your indentation style consistent.

There is more than one way of indenting code.
 
Style 1:
    
function foo()
{
    if ($maybe)
    {
        do_it_now();
        again();
    }
    else
    {
        abort_mission();
    }
    finalize();
}
Style 2:
    
function foo() {
    if ($maybe) {
        do_it_now();
        again();
    } else {
        abort_mission();
    }
    finalize();
}
Style 3:
    
function foo()
{   if ($maybe)
    {   do_it_now();
        again();
    }
    else
    {   abort_mission();
    }
    finalize();
}
I used to code in style #2 but recently switched to #1. But that is only a matter of preference. There is no "best" style that everyone should be following. Actually, the best style is a consistent style. If you are part of a team or if you are contributing code to a project, you should follow the existing style that is being used in that project. That's one of the best practices for writing super readable code.

The indentation styles are not always completely distinct from one another. Sometimes, they mix different rules. For example, in PEAR Coding Standards, the opening bracket "{" goes on the same line as control structures, but they go to the next line after function definitions.

PEAR Style:

function foo()
{                     // placed on the next line
    if ($maybe) {     // placed on the same line
        do_it_now();
        again();
    } else {
        abort_mission();
    }
    finalize();
}
Also, note that they are using four spaces instead of tabs for indentations. 

 4. Avoid Obvious Comments

4. Avoid Obvious Comments,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
Commenting your code is fantastic; however, it can be overdone or just be plain redundant. Take this example:
    
// get the country code
$country_code = get_country_code($_SERVER['REMOTE_ADDR']);
 
// if country code is US
if ($country_code == 'US') {
 
    // display the form input for state
    echo form_input_state();
}


When the text is that obvious, it's really not productive to repeat it within comments.

If you must comment on that code, you can simply combine it to a single line instead:
    
// display state selection for US users
$country_code = get_country_code($_SERVER['REMOTE_ADDR']);
if ($country_code == 'US') {
    echo form_input_state();
}

5. Code Grouping

5. Code Grouping,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
More often than not, certain tasks require a few lines of code. It is a good idea to keep these tasks within separate blocks of code, with some spaces between them. That's one of the best practices for writing super readable code.

Here is a simplified example:
    
// get list of forums
$forums = array();
$r = mysql_query("SELECT id, name, description FROM forums");
while ($d = mysql_fetch_assoc($r)) {
    $forums []= $d;
}
 
// load the templates
load_template('header');
load_template('forum_list',$forums);
load_template('footer');


Adding a comment at the beginning of each block of code also emphasizes the visual separation.

6. Consistent Naming Scheme

6. Consistent Naming Scheme,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
PHP itself is sometimes guilty of not following consistent naming schemes:

  • strpos() vs. str_split()
  • imagetypes() vs. image_type_to_extension()
First of all, the names should have word boundaries. There are two popular options:
  • camelCase: The first letter of each word is capitalized, except the first word.
  • underscores: Underscores between words, like: mysql_real_escape_string().
Having different options creates a situation similar to the indent styles, as I mentioned earlier. If an existing project follows a certain convention, you should go with that. Also, some language platforms tend to use a certain naming scheme. For instance, in Java, most code uses camelCase names, while in PHP, the majority of uses underscores. That's one of the best practices for writing super readable code.

These can also be mixed. Some developers prefer to use underscores for procedural functions, and class names, but use camelCase for class method names:
    
class Foo_Bar {
 
    public function someDummyMethod() {
 
    }
 
}
 
function procedural_function_name() {
 
}


So again, there is no obvious "best" style. Just being consistent.

7. DRY Principle

7. DRY Principle,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
DRY stands for Don't Repeat Yourself. Also known as DIE: Duplication is Evil.

The principle states:

    "Every piece of knowledge must have a single, unambiguous, authoritative representation within a system."

The purpose of most applications (or computers in general) is to automate repetitive tasks. This principle should be maintained in all code, even web applications. The same piece of code should not be repeated over and over again.

For example, most web applications consist of many pages. These pages will likely contain common elements. Headers and footers are usually the best candidates for this. It's not a good idea to keep copy-pasting these headers and footers into every page. Here is Jeffrey Way explaining how to create templates in CodeIgniter.
    
$this->load->view('includes/header');
 
$this->load->view($main_content);
 
$this->load->view('includes/footer');

8. Avoid Deep Nesting

8. Avoid Deep Nesting,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

Too many levels of nesting can make code harder to read and follow.
    
function do_stuff() {
 
// ...
 
    if (is_writable($folder)) {
 
        if ($fp = fopen($file_path,'w')) {
 
            if ($stuff = get_some_stuff()) {
 
                if (fwrite($fp,$stuff)) {
 
                    // ...
 
                } else {
                    return false;
                }
            } else {
                return false;
            }
        } else {
            return false;
        }
    } else {
        return false;
    }
}

For the sake of readability, it is usually possible to make changes to your code to reduce the level of nesting:
    
function do_stuff() {
 
// ...
 
    if (!is_writable($folder)) {
        return false;
    }
 
    if (!$fp = fopen($file_path,'w')) {
        return false;
    }
 
    if (!$stuff = get_some_stuff()) {
        return false;
    }
 
    if (fwrite($fp,$stuff)) {
        // ...
    } else {
        return false;
    }
}

9. Limit Line Length

9. Limit Line Length,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
Our eyes are more comfortable when reading tall and narrow columns of text. This is precisely the reason why newspaper articles look like this:

It is a good practice to avoid writing horizontally long lines of code.
    
// bad
$my_email->set_from('test@email.com')->add_to('programming@gmail.com')->set_subject('Methods Chained')->set_body('Some long message')->send();
 
// good
$my_email
    ->set_from('test@email.com')
    ->add_to('programming@gmail.com')
    ->set_subject('Methods Chained')
    ->set_body('Some long message')
    ->send();
 
// bad
$query = "SELECT id, username, first_name, last_name, status FROM users LEFT JOIN user_posts USING(users.id, user_posts.user_id) WHERE post_id = '123'";
 
// good
$query = "SELECT id, username, first_name, last_name, status
    FROM users
    LEFT JOIN user_posts USING(users.id, user_posts.user_id)
    WHERE post_id = '123'";


Also, if anyone intends to read the code from a terminal window, such as Vim users, it is a good idea to limit the line length to around 80 characters.

10. File and Folder Organization

Technically, you could write an entire application code within a single file. But that would prove to be a nightmare to read and maintain.

During my first programming projects, I knew about the idea of creating "include files." However, I was not yet even remotely organized. I created an "inc" folder, with two files in it: db.php and functions.php. As the applications grew, the functions file also became huge and unmaintainable. That's one of the best practices for writing super readable code.

One of the best approaches is to either use a framework or imitate their folder structure. Here is what CodeIgniter looks like:
 

10. File and Folder Organization,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

11. Consistent Temporary Names

11. Consistent Temporary Names,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

Normally, the variables should be descriptive and contain one or more words. But, this doesn't necessarily apply to temporary variables. They can be as short as a single character.

It is a good practice to use consistent names for your temporary variables that have the same kind of role. Here are a few examples that I tend use in my code:
    
// $i for loop counters
for ($i = 0; $i < 100; $i++) {
 
    // $j for the nested loop counters
    for ($j = 0; $j < 100; $j++) {
 
    }
}
 
// $ret for return variables
function foo() {
    $ret['bar'] = get_bar();
    $ret['stuff'] = get_stuff();
 
    return $ret;
}
 
// $k and $v in foreach
foreach ($some_array as $k => $v) {
 
}
 
// $q, $r and $d for mysql
$q = "SELECT * FROM table";
$r = mysql_query($q);
while ($d = mysql_fetch_assocr($r)) {
 
}
 
// $fp for file pointers
$fp = fopen('file.txt','w');

12. Capitalize SQL Special Words

12. Capitalize SQL Special Words,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
Database interaction is a big part of most web applications. If you are writing raw SQL queries, it is a good idea to keep them readable as well. That's one of the best practices for writing super readable code.

Even though SQL special words and function names are case insensitive, it is common practice to capitalize them to distinguish them from your table and column names.

SELECT id, username FROM user;
 
UPDATE user SET last_login = NOW()
WHERE id = '123'
 
SELECT id, username FROM user u
LEFT JOIN user_address ua ON(u.id = ua.user_id)
WHERE ua.state = 'NY'
GROUP BY u.id
ORDER BY u.username
LIMIT 0,20 

13. Separation of Code and Data

13. Separation of Code and Data,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

This is another principle that applies to almost all programming languages in all environments. In the case of web development, the "data" usually implies HTML output.

When PHP was first released many years ago, it was primarily seen as a template engine. It was common to have big HTML files with a few lines of PHP code in between. However, things have changed over the years and websites became more and more dynamic and functional. The code is now a huge part of web applications, and it is no longer a good practice to combine it with HTML. That's one of the best practices for writing super readable code.

You can either apply the principle to your application by yourself, or you can use a third-party tool (template engines, frameworks, or CMS) and follow their conventions.

Popular PHP Frameworks:
  • CodeIgniter
  • Zend Framework
  • Cake PHP
  • Symfony
Popular Template Engines:
  • Smarty
  • Dwoo
  • Savant
Popular Content Management Systems

14. Alternate Syntax Inside Templates

14. Alternate Syntax Inside Templates,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

You may choose not to use a fancy template engine and instead go with plain inline PHP in your template files. This does not necessarily violate the "Separation of Code and Data," as long as the inline code is directly related to the output, and is readable. In this case, you should consider using the alternate syntax for control structures.

Here is an example:

<div class="user_controls">
    <?php if ($user = Current_User::user()): ?>
        Hello, <em><?php echo $user->username; ?></em> <br/>
        <?php echo anchor('logout', 'Logout'); ?>
    <?php else: ?>
        <?php echo anchor('login','Login'); ?> |
        <?php echo anchor('signup', 'Register'); ?>
    <?php endif; ?>
</div>
 
<h1>My Message Board</h1>
 
<?php foreach($categories as $category): ?>
 
    <div class="category">
 
        <h2><?php echo $category->title; ?></h2>
 
        <?php foreach($category->Forums as $forum): ?>
 
            <div class="forum">
 
                <h3>
                    <?php echo anchor('forums/'.$forum->id, $forum->title) ?>
                    (<?php echo $forum->Threads->count(); ?> threads)
                </h3>
 
                <div class="description">
                    <?php echo $forum->description; ?>
                </div>
 
            </div>
 
        <?php endforeach; ?>
 
    </div>
 
<?php endforeach; ?>


This lets you avoid lots of curly braces. Also, the code looks and feels similar to the way HTML is structured and indented.

15. Object-Oriented vs. Procedural

15. Object-Oriented vs. Procedural,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
 
Object-oriented programming can help you create well-structured code. But that does not mean you need to abandon procedural programming completely. Actually creating a mix of both styles can be good.

Objects should be used for representing data, usually residing in a database.
    
class User {
 
    public $username;
    public $first_name;
    public $last_name;
    public $email;
 
    public function __construct() {
        // ...
    }
 
    public function create() {
        // ...
    }
 
    public function save() {
        // ...
    }
 
    public function delete() {
        // ...
    }
 
}


Procedural functions may be used for specific tasks that can be performed independently.
    
function capitalize($string) {
 
    $ret = strtoupper($string[0]);
    $ret .= strtolower(substr($string,1));
    return $ret;
 
}

16. Read Open Source Code

16. Read Open Source Code,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability

Open Source projects are built with the input of many developers. These projects need to maintain a high level of code readability so that the team can work together as efficiently as possible. Therefore, it is a good idea to browse through the source code of these projects to observe what these developers are doing.

17. Code Refactoring

17. Code Refactoring,code comments best practices java,what is code readability,how to improve the readability of code,code readability in python,best practices for writing super readable code,code commenting best practices javascript,code comments best practices python,code readability and maintainability
When you "refactor," you make changes to the code without changing any of its functionality. You can think of it as a "clean up," for the sake of improving readability and quality.

This doesn't include bug fixes or the addition of any new functionality. You might refactor code that you have written the day before, while it's still fresh in your head so that it is more readable and reusable when you may potentially look at it two months from now. As the motto says: "refactor early, refactor often." That's one of the best practices for writing super readable code.

You may apply any of the "best practices" of code readability during the refactoring process.

I hope you enjoyed this article! Any that I missed? Let me know via the comments. And if you want to improve your coding, there are lots of scripts and apps available to help you on Envato Market. See what's most popular this week. 
 

Post a Comment

Previous Post Next Post