- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,我是一个完整的C++新手。我正在尝试使用一些结构体数组(包括2D结构体)作为参数来调用函数,但出现以下错误:
No matching function for call to 'function': Candidate function not viable: no known conversion from 'struct _psoParticle [particleQnty][2]' to '_psoParticle (&)[][2]' for 1st argument
struct unit{
int inventory[material][period];
int consumption[material][period];
int replenishment[material][period];
int planned[material][period];
int accPlanned[material][period];
int demandPull[material][period];
int costPenalty[material][period];
bool delivery[material][period];
int leadtime;
int inventoryControl[material][period];
double bufferSize[material][period];
double bufferLevel[material][period];
double bufferMgmt[material][period];
const double lbGamma{-100.0};
const double ubGamma{100.0};
};
struct _psoParticle{
double positionBest;
double velocityBest;
long pbest;
};
struct unit CareUnit[2]{};
struct unit centralStore{};
struct _psoParticle psoParticle_CareUnit[10][2];
struct _psoParticle psoParticle_CentralStore[10];
int totalConsumption[material]{}, totalInventory{}, totalLateness{};
int particleQnty{10};
int x[particleQnty]{};
int dbr(_psoParticle (&pso_CareUnit)[][2], _psoParticle (&pso_CentralStore)[],
int particle, unit (&CareUnit)[], unit ¢ralStore,
int (&totalConsumption)[1], int &totalInventory, int &totalLateness);
for (int i = 0; i < particleQnty; ++i)
x[i] = dbr(psoParticle_CareUnit, psoParticle_CentralStore, i, CareUnit,
centralStore, totalConsumption, totalInventory, totalLateness);
最佳答案
嗯,是的,我知道这一点。。。嗯,您的函数应该像这样
int dbr(_psoParticle (&pso_CareUnit)[10][2], _psoParticle (&pso_CentralStore)[10],
int particle, unit (&CareUnit)[2], unit ¢ralStore,
int (&totalConsumption)[material], int &totalInventory, int &totalLateness);
sizeof(arr)
和
for(T obj: arr){}
之类的花哨功能,而不能做到。
template<typename T1, typename T2, etc...
int dbr(T1 &pso_CareUnit, T2 & pso_CentralStore...
int dbr(_psoParticle ** pso_CareUnit, _psoParticle *pso_CentralStore,...
int dbr(std::vector<std::vector<_psoParticle>>& pso_CareUnit, std::vector<_psoParticle>& pso_CentralStore,...
struct Container{
_psoParticle careUnit[10][2];
_psoParticle centralStore[10];
};
int dbr(Container & iContainer...
class Pso{
public:
int dbr(...
private:
_psoParticle careUnit[10][2];
_psoParticle centralStore[10];
// ... the rest of arguments
};
关于c++ - C++-候选函数不可行: no known conversion from 'struct ' to 'struct (&)' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50069353/
对于我的一个项目,我终于需要使用我的第一个多态类(std::cout 除外)。 我正在研究如何确保至少在某些情况下我有 100% 的去虚拟化调用。 这段代码是否合法可行? dynamic_cast 有
最近有一个编译问题,用这个片段说明: struct Base { }; template struct A : Base { A(){} A(Base&&) {} }; A foo()
注意:这是一个冗长的问题,需要对 MVVM“设计模式”、JSON 和 jQuery 有很好的理解.... 所以我有一个理论/主张 DHTML 中的 MVVM 是可能的 和可行的 并且想知道您是否同意/
我有一台 Mac 服务器,我正在构建 PHP 代码以允许用户上传图像、文档甚至视频文件。研究这个肯定让我很紧张,我希望上传的内容没有病毒。 自己构建一些东西会是一个巨大的挑战吗?您会这样做,还是会
根据文档,ASP.NET 项目(尚)不支持新的 PackageReference https://learn.microsoft.com/en-us/nuget/consume-packages/pa
我是一名优秀的程序员,十分优秀!