如此理解面向对象编程 | 酷壳

酷壳  •  扫码分享

从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.") ;
		}
	}
}

然后开始用面向对象的编程方式一步一步地进化这个代码。

先是以过程化的思路来重构之。

过程化的方案

public class printos
{
	private static string unixbox()
	{
		return "this is a unix box and therefore good." ;
	}
	private static string windowsbox()
  	{
		return "this is a windows box and therefore bad." ;
	}
	private static string defaultbox()
	{
		return "this is not a box." ;
	}
	private static string getthestring(final string osname)
	{
		if (osname.equals("sunos") || osname.equals("linux"))
		{
			return unixbox() ;
		}
		else if (osname.equals("windows nt") ||osname.equals("windows 95"))
		{
			return windowsbox() ;
		}
		else
		{
			return defaultbox() ;
		}
  	}
	public static void main(final string[] args)
	{
		system.out.println(getthestring(system.getproperty("os.name"))) ;
	}
}

然后是一个幼稚的面向对象的思路。

幼稚的面向对象编程

public class printos
{
	public static void main(final string[] args)
  	{
		system.out.println(osdiscriminator.getboxspecifier().getstatement()) ;
 	}
}

&

public class osdiscriminator // factory pattern
{
	private static boxspecifier theboxspecifier = null ;
  	public static boxspecifier getboxspecifier()
	{
		if (theboxspecifier == null)
		{
			string osname = system.getproperty("os.name") ;
 			if (osname.equals("sunos") || osname.equals("linux"))
 			{
				theboxspecifier = new unixbox() ;
			}
			else if (osname.equals("windows nt") || osname.equals("windows 95"))
			{
				theboxspecifier = new windowsbox() ;
			}
			else
			{
				theboxspecifier = new defaultbox () ;
			}
		}
		return theboxspecifier ;
	}
}

&

public interface boxspecifier
{
	string getstatement() ;
}

&

public class defaultbox implements boxspecifier
{
	public string getstatement()
	{
		return "this is not a box." ;
  	}
}

&

public class unixbox implements boxspecifier
{
	public string getstatement()
	{
		return "this is a unix box and therefore good." ;
  	}
}

&

public class windowsbox implements boxspecifier
{
  	public string getstatement()
	{
		return "this is a windows box and therefore bad." ;
	}
}

他们觉得上面这段代码没有消除if语句,他们说这叫代码的“logic bottleneck”(逻辑瓶颈),因为如果你要增加一个操作系统的判断的话,你不但要加个类,还要改那段if-else的语句。

所以,他们整出一个叫sophisticated的面向对象的解决方案。

oo大师的方案

注意其中的design pattern

public class printos
{
  	public static void main(final string[] args)
  	{
		system.out.println(osdiscriminator.getboxspecifier().getstatement()) ;
  	}
}
public class osdiscriminator // factory pattern
{
  	private static java.util.hashmap storage = new java.util.hashmap() ;

 	public static boxspecifier getboxspecifier()
	{
		boxspecifier value = (boxspecifier)storage.get(system.getproperty("os.name")) ;
		if (value == null)
			return defaultbox.value ;
		return value ;
 	}
  	public static void register(final string key, final boxspecifier value)
  	{
		storage.put(key, value) ; // should guard against null keys, actually.
  	}
  	static
  	{
		windowsbox.register() ;
  		unixbox.register() ;
  		macbox.register() ;
  	}
}
public interface boxspecifier
{
  	string getstatement() ;
}
public class defaultbox implements boxspecifier // singleton pattern
{
	public static final defaultbox value = new defaultbox () ;
	private defaultbox() { }
	public string getstatement()
	{
		return "this is not a box." ;
	}
}
public class unixbox implements boxspecifier // singleton pattern
{
 	public static final unixbox value = new unixbox() ;
	private unixbox() { }
	public  string getstatement()
   	{
		return "this is a unix box and therefore good." ;
 	}
  	public static final void register()
  	{
		osdiscriminator.register("sunos", value) ;
  		osdiscriminator.register("linux", value) ;
 	}
}
public class windowsbox implements boxspecifier  // singleton pattern
{
	public  static final windowsbox value = new windowsbox() ;
	private windowsbox() { }
	public string getstatement()
	{
		return "this is a windows box and therefore bad." ;
  	}
  	public static final void register()
  	{
		osdiscriminator.register("windows nt", value) ;
  		osdiscriminator.register("windows 95", value) ;
	}
}
public class macbox implements boxspecifier // singleton pattern
{
 	public static final macbox value = new macbox() ;
	private macbox() { }
	public  string getstatement()
   	{
		return "this is a macintosh box and therefore far superior." ;
 	}
  	public static final void register()
  	{
		osdiscriminator.register("mac os", value) ;
 	}
}

作者还非常的意地说,他加了一个“mac os”的东西。老实说,当我看到最后这段oo大师搞出来的代码,我快要吐了。我瞬间想到了两件事:一个是以前酷壳上的《面向对象是个骗局》和 《各种流行的编程方式》中说的“设计模式驱动编程”,另一个我想到了那些被敏捷洗过脑的程序员和咨询师,也是这种德行。

于是我去看了一下第一作者joseph bergin的主页,这个ph.d是果然刚刚完成了一本关于敏捷和模式的书。

rob pike的评论

(rob pike是当年在bell lab里和ken一起搞unix的主儿,后来和ken开发了utf-8,现在还和ken一起搞go语言。注:不要以为ken和dennis是基友,其实他们才是真正的老基友!)

rob pike在他的google+的这贴里评论到这篇文章——

他并不确认这篇文章是不是搞笑?但是他觉得这些个写这篇文章是很认真的。他说他要评论这篇文章是因为他们是一名hacker,至少这个词出现在这篇文章的术语中。

他说,这个程序根本就不需要什么object,只需要一张小小的配置表格,里面配置了对应的操作系统和你想输出的文本。这不就完了。这么简单的设计,非常容易地扩展,他们那个所谓的hack solution完全就是笨拙的代码。后面那些所谓的代码进化相当疯狂和愚蠢的,这个完全误导了对编程的认知。

然后,他还说,他觉得这些oo的狂热份子非常害怕数据,他们喜欢用多层的类的关系来完成一个本来只需要检索三行数据表的工作。他说他曾经听说有人在他的工作种用各种oo的东西来替换while循环。(我听说中国thoughtworks那帮搞敏捷的人的确喜欢用object来替换所有的if-else语句,他们甚至还喜欢把函数的行数限制在10行以内)

他还给了一个链接http://prog21.dadgum.com/156.html,你可以读一读。最后他说,oop的本质就是——对数据和与之关联的行为进行编程。便就算是这样也不完全对,因为:

sometimes data is just data and functions are just functions.

我的理解

我觉得,这篇文章的例子举得太差了,差得感觉就像是oo的高级黑。面向对象编程注重的是:1)数据和其行为的打包封装,2)程序的接口和实现的解耦。你那怕,举一个多个开关和多个电器的例子,不然就像stl中,一个排序算法对多个不同容器的例子,都比这个例子要好得多得多。老实说,java sdk里太多这样的东西了。

我以前给一些公司讲一些设计模式的培训课,我一再提到,那23个经典的设计模式和oo半毛钱关系没有,只不过人家用oo来实现罢了。设计模式就三个准则:1)中意于组合而不是继承,2)依赖于接口而不是实现,3)高内聚,低耦合。你看,这完全就是unix的设计准则

(全文完)

(转载本站文章请注明作者和出处 酷壳 – coolshell.cn ,请勿用于任何商业用途)

——=== 访问 酷壳404页面 以支持公益事业 ===——

随意打赏

提交建议
微信扫一扫,分享给好友吧。