在 c++ 中使用指向无符号长整型的指针而不是 long long 整型

发布于 2024-12-02 11:56:38 字数 138 浏览 0 评论 0原文

我想将类型为 unsigned int * (也定义为 std::size_t )的指针传递给 MKL 函数,该函数期望它是 long long * ,尽管两者都是 64 位整数,但我收到类型不兼容错误。我在 64 位整数模式下使用 MKL。有什么帮助吗? 谢谢

I want to pass a pointer of type unsigned integer * (also defined as std::size_t) to MKL function which expects it to be long long * , although both are 64 bit integers, I get type incompatibility errors. I use MKL in the 64-bit integer mode. Any help ?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明月松间行 2024-12-09 11:56:38
#include <limits.h>

int main() {
    unsigned int i = UINT_MAX;
    unsigned int iptr = &i

    // In writing this, I realized that you have to change the original 
    // or declare a new llong, but remember that 
    // returning a pointer to a local is bad.  Change the original if you can.
    if(i > LLONG_MAX) i = LLONG_MAX;
    long long *lptr = (long long *)i;
}
#include <limits.h>

int main() {
    unsigned int i = UINT_MAX;
    unsigned int iptr = &i

    // In writing this, I realized that you have to change the original 
    // or declare a new llong, but remember that 
    // returning a pointer to a local is bad.  Change the original if you can.
    if(i > LLONG_MAX) i = LLONG_MAX;
    long long *lptr = (long long *)i;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文