集体笔记向+google机翻(机翻的确很多细节形容不清,看不懂记得参考原文)
原文参见:https://hackingcpp.com/cpp/be...

Function Objects

  • 至多提供一个operator() 重载
  • 像一个函数一样
  • 能够是有状态的(对象的data数据有记忆,相似函数里有一个static data)

    Example: Interval Query

Lambdas (Basics)