gpt4 book ai didi

c++ - Matlab/Mex : Conversion warning in mxarray. h

转载 作者:行者123 更新时间:2023-11-30 05:10:02 25 4
gpt4 key购买 nike

我正在为 Matlab 编写一个 mex 函数,并在编译期间注意到来自 Visual Studio 2017 的警告。在几乎删除除包含的所有内容和 mex 函数的裸包装器之后,我不得不得出结论,警告实际上指向库本身:

#include <mexplus/mxarray.h>

void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{

}

此代码段已触发警告

...\mexplus\mxarray.h(737): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data

我查看了该文件,确实有一个循环通过 std::vectorsize_t 中迭代,同时调用一个先前定义的函数,该函数采用int 作为参数:

733:  std::vector<std::string> fieldNames() const {
734: MEXPLUS_ASSERT(isStruct(), "Expected a struct array.");
735: std::vector<std::string> fields(fieldSize());
736: for (size_t i = 0; i < fields.size(); ++i)
737: fields[i] = fieldName(i);
738: return fields;
739: }

函数 fieldName 定义在上面:

std::string fieldName(int index) const {
const char* field = mxGetFieldNameByNumber(array_, index);
MEXPLUS_ASSERT(field, "Failed to get field name at %d.", index);
return std::string(field);
}

因此,由于 size_tint 的转换已经在不同的环境中造成了一些困惑,我的问题是:

  • 我可以安全地忽略它吗?
  • 是否真的有理由让任何人像这样编写函数 fieldNames()(或者更确切地说,要求函数 fieldName(int index) 将整数作为争论)?
  • 这个警告实际上可能指向我的配置文件中的错误吗?

最佳答案

您可以安全地忽略它。

这里很好地描述了为什么循环可以这样写来自 http://en.cppreference.com/w/cpp/types/size_t :

std::size_t is commonly used for array indexing and loop counting. Programs that use other types, such as unsigned int, for array indexing may fail on, e.g. 64-bit systems when the index exceeds UINT_MAX or if it relies on 32-bit modular arithmetic.

size_t 的实际值,即可分配的最大内存量,将取决于系统。编译器看起来将 0(在 i = 0 中)转换为 int 然后抛出警告,因为它只是将可用范围减少了一半(即,而不是一个 unsigned int)。

但在实践中,i 可能仍然可以索引到 2^32 的值(这是它依赖于平台的地方),而你可能不会处理具有那么多字段名称的结构。

Might this warning actually point to an error in my configuration file?

我不这么认为。

Can I safely ignore this?

是的。

关于c++ - Matlab/Mex : Conversion warning in mxarray. h,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45870468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com