今天偶然發現的Minimum and Maximum Operators in C++。可以用以下的 code 很簡單的產生 Minimum 以及 Maximum:
不過要注意一下,這個是 g++ 才有的 extensions,別的 compiler 無法使用。
max = x >? y ; min = x <? y ;
不過要注意一下,這個是 g++ 才有的 extensions,別的 compiler 無法使用。
max = x >? y ; min = x <? y ;
About the Author
0 意見: