We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
或许修改成:
{ // 以下为 DoWork<int> 查找对应匹配的伪代码 templateProtoInt = TemplateDict.find(DoWork, int); // 查找模板原型,查找到(0) template = templateProtoInt.match(int); // 以 int 对应 int 匹配到 (1) } { // 以下为DoWork<float*> 查找对应匹配的伪代码 templateProtoFloatPtr = TemplateDict.find(DoWork, float*) // 查找模板原型,查找到(0) template = templateProtoFloatPtr.match(float*) // 以 float* 对应 U* 匹配到 (3),此时U为float }
会更好理解?
The text was updated successfully, but these errors were encountered:
这里我再看下上下文。
Sorry, something went wrong.
No branches or pull requests
或许修改成:
会更好理解?
The text was updated successfully, but these errors were encountered: