THE C++ STANDARD LIBRARY中的一句话的理解
p257
Note that the sorting criterion PersonSortCriterion is a type. Thus, you can use it as a template argument for the set. This would not be possible, if you implement the sorting criterion
as a plain function (as was done on page 123).
我认为用函数指针可以做到 “This would not be possible,”???