GithubHelp home page GithubHelp logo

akaimo-sezemi-2015-readable-code's People

Contributors

akaimo avatar

Watchers

 avatar  avatar  avatar

Forkers

shopetan

akaimo-sezemi-2015-readable-code's Issues

早めの検査、早めの失敗

実際のコード

処理をしたらすぐに検査をして、異常があればすぐに失敗しているのがいい。

fname = fopen(argv[1], "r");
if (fname == NULL) {
printf("%sが開けません\n", argv[1]);
exit(1);
}

    fname = fopen(argv[1], "r");

    if (fname == NULL) {
        printf("%sが開けません\n", argv[1]);
        exit(1);
    }

どうしてリーダブルだと思っているか?

fname の変数名のスコープの中で最短距離でエラーの検査をしています。読んでいて思考がジャンプしなくても何をしているか理解できるし、他の処理が挟まらないうちに exit で失敗してくれるのでファイルの open 失敗による他の影響を考える負担から解放され、リーダブルだと思いました。

この書き方の一言説明

早めの検査、早めの失敗

見つけた経緯

NULL チェックの == != の違いによるリーダブルなコードを探そうと見ていて、どうしてここで NULL をチェックしているんだっけ?と考えたときにこのコードはリーダブルだと気付きました。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.