gpt4 book ai didi

c - 从一个函数传递到另一个函数的值发生变化......无法弄清楚为什么?

转载 作者:可可西里 更新时间:2023-11-01 10:50:04 25 4
gpt4 key购买 nike

我有一个非常奇怪的问题,我无法理解。

这是 C 代码:

//below are the values being passed
//long numTreePeriods = 80
//double length = 0.23013698630136986
TTimeLineInfo* tlInfo = GtoTimeLineInfoNew( (long)ceil(numTreePeriods/length), /*ppy*/
0L,
1,
FALSE);

现在这里是上面调用的 GtoTimeLineInfoNew 函数的签名:

__declspec(dllexport) TTimeLineInfo*   GtoTimeLineInfoNew
(long minPPY, /* (I) Min # ppy before switchDate */
TDate switchDate, /* (I) If 0, ignore ppy2; only use minPPY*/
long minPPY2, /* (I) Min # ppy after switchDate */
TBoolean wholeDayTPs);

当我调试代码并使用上面指定的值进入函数时,我得到:

minPPY = -1636178017

??????什么会导致这种行为?

准确地说,C 代码是我用 C++/CLI 封装的一个 dll。尽管如此,这个问题似乎与此无关......

最佳答案

我不确定;但我的猜测是将参数传递给 C 函数的方式与传递给 C++ 函数的方式不同。尝试:

extern "C" __declspec(dllexport) TTimeLineInfo* GtoTimeLineInfoNew ...

关于c - 从一个函数传递到另一个函数的值发生变化......无法弄清楚为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7650610/

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