如果我是普通程序员,可能还保留着一丝人性,那会买1个西瓜 ,如果路上见到桃子的话,就买2个(桃子 )
buyWatermelons(1)
if (hasPeaches()) {
buyPeaches(2)
}
如果我是骨灰级程序员,我已经化身为按字节执行命令的人肉cpu,那自然是会买3个西瓜
buyWatermelons(1)
context.switch("watermelon")
if (hasPeaches()) {
buyInCurrentContext(2)
}