Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
282 views
in Technique[技术] by (71.8m points)

c++ - Impact of deprecated std::unary_function and std:: binary_function?

std::unary_function and std::binary_function were depreacated in c++11. I have two doubts.

  1. Does std::unary_function or std::binary_function come into play only if function is explicitly derived from them. like this:
struct derivedsmthing:  std::unary_function<smthing> ?
  1. if not, i.e. some functions will get impacted even if it's not explicitly derived from these two? what are those functions?

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...