|
從 Rob Pike 的 Google+ 上的一個推看到了一篇叫《Understanding Object Oriented Programming》的文章,我先把這篇文章簡述一下,然后再說說老牌黑客 Rob Pike 的評論。
先看這篇教程是怎么來講述 OOP 的。它先給了下面這個問題,這個問題需要輸出一段關于操作系統的文字:假設 Unix 很不錯,Windows 很差。
這個把下面這段代碼描述成是Hacker Solution。(這幫人覺得下面這叫黑客?我估計這幫人真是沒看過C語言的代碼)
public class PrintOS{ public static void main (final String[] args) { String osName = System.getProperty ("os.name") ; if (osName.equals ("SunOS") || osName.equals ("Linux")) { System.out.println ("This is a UNIX box and therefore good.") ; } else if (osName.equals ("Windows NT") || osName.equals ("Windows 95")) { System.out.println ("This is a Windows box and therefore bad.") ; } else { System.out.println ("This is not a box.") ; } }}
it知識庫:如此理解面向對象編程,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。