タグ

2014年10月31日のブックマーク (2件)

  • Android creator Andy Rubin is leaving Google

    Andy Rubin, who co-founded the Android project, is leaving Google. According to The Wall Street Journal, Rubin's departing to create an incubator for hardware startups. His role heading up the company's robotics will be taken up by James Kuffner, a research scientist at the company and a professor at Carnegie Mellon University. In a statement, Google's CEO Larry Page thanked Rubin for his work. "I

    Android creator Andy Rubin is leaving Google
    indication
    indication 2014/10/31
    androidが安定期に入ったということか…?
  • Cのエラーハンドリングと例外設計、例外処理のメモ - 百日半狂乱

    二十五日半狂乱、6日目(の分...orz)の記事 Cのエラーハンドリングを毎回やるのは面倒だ! 前回も言ったが、Cではエラーハンドリングに戻り値とerrnoを用いる. それはそうと例外設計において"無視"は大罪である. だから、関数を呼び出したら戻り値は漏らさずチェックすべきだ. ということで、例えば以下のように逐一戻り値をチェックする. if(send(sockfd, buf, len, 0) < 0){ ERROR("send"); exit(1); } あぁ、面倒だ. 一体コードのどの部分が正常系の処理なのか? ほとんどエラーハンドリング*1で埋め尽くされるじゃないか. そもそもエラーハンドリング部分に書くのは毎回同じコードだし、コードの繰り返しは防ぎたい. エラー処理部分をラッピングして楽をする unpv12eの中でラッパーを被せることによってこの面倒を回避する方法を知った. in

    Cのエラーハンドリングと例外設計、例外処理のメモ - 百日半狂乱