Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 247 Bytes

File metadata and controls

9 lines (6 loc) · 247 Bytes

调用bind的一般形式为:

auto newCallable = bind(callable, arg_list);

其接受的逗号分隔的参数列表对应于给定的callable的参数

所以其接受的参数个数取决于原可调用对象的参数列表的个数