x-jeff / GitTalk

1 stars 0 forks source link

【C++基础】第六十五课:[关联容器]无序容器 - welcome to x-jeff blog #343

Open x-jeff opened 1 year ago

x-jeff commented 1 year ago

http://shichaoxin.com/2023/02/16/C++%E5%9F%BA%E7%A1%80-%E7%AC%AC%E5%85%AD%E5%8D%81%E4%BA%94%E8%AF%BE-%E5%85%B3%E8%81%94%E5%AE%B9%E5%99%A8-%E6%97%A0%E5%BA%8F%E5%AE%B9%E5%99%A8/

xinshichao's blog

Starman-SWA commented 1 year ago
return hash<string>()(sd.isbn());

这个地方为什么有两个括号,不太好理解

x-jeff commented 1 year ago

@Starman-SWA

return hash<string>()(sd.isbn());

这个地方为什么有两个括号,不太好理解

hash<string>()构造哈希函数对象,isbn()为Sales_data类的成员函数。