在某些情況下是的
比如
max(a,b) { return a>b?a,b; }
就是
int max(a,b) { return a>b?a,b;}
的簡稱一樣
但是注意*****你要知道有這種代碼的形式 但是在實際的情況下不要寫這種代碼!!
Murphy's Law :
If there are two or more ways to do something, and one of those ways can result in a catastrophe, then someone will do it.