繁体   English   中英

STL VS13 C ++:错误C4996未禁用

[英]STL VS13 C++: Error C4996 not disabling

我在VS13中有以下代码:

double distance(vector <double> point) {
    return sqrt(inner_product(point[0], point[4], point, 0));
}

int main() {
    vector < double > point {2, 2, 2, 2};
    cout << distance(point);
    cin.get();
}

哪个调用

    error C4996 ('std::_Inner_product2': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS)
 c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2825: '_Iter': must be a class or namespace when followed by '::'
    c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2039: 'value_type' : is not a member of '`global namespace''
    c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2146: syntax error : missing ';' before identifier 'value_type'
    c:\program files\microsoft visual studio 12.0\vc\include\xutility(372): error C2602: 'std::iterator_traits<_InIt>::value_type' is not a member of a base class of 'std::iterator_traits<_InIt>'

我知道这里有很多类似的问题。 我还阅读了有关MSDN的文档。

结果,我尝试了下一个解决方案:

1) #define _SCL_SECURE_NO_WARNINGS

从过去的评论来看,它似乎行得通,但对我来说,它会导致很多错误,例如:

c:\program files\microsoft visual studio 12.0\vc\include\xutility(371): error C2825: '_Iter': must be a class or namespace when followed by '::'

2)

#pragma warning(disable:4996)
#pragma warning(default:4996)

造成相同的错误;

3)项目属性->配置属性-> C / C ++->常规-> SDL检查->否

只是不起作用。

您能否看一下并写下如何禁用该错误? 谢谢!

我认为你的意思是以下功能

double distance( const std::vector<double> &point ) 
{
    return std::sqrt( std::inner_product( point.begin(), point.end(), point.begin(), 0.0 ) );
}

这是一个示范节目

#include <iostream>
#include <vector>
#include <numeric>
#include <cmath>

double distance( const std::vector<double> &point ) 
{
    return std::sqrt( std::inner_product( point.begin(), point.end(), point.begin(), 0.0 ) );
}

int main()
{ 
    std::vector<double> point = { 2, 2, 2, 2 };

    std::cout << distance( point ) << std::endl;
}

输出是

4

工具选项高级

此处有一个节用于禁止警告。
如果我没记错的话,我总是压制4820; 4996; 4710是三个。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM