摘要: 最近在改currennt的代码,我擦擦擦,实在是忍不了了C++最恶心的地方在于指针引用与面向对象混用!!TMD各种不匹配举例:template void TrainableLayer::vectorXvector(real_vector* destmatrix, real_vector* srcve... 阅读全文
posted @ 2014-12-04 10:30 MindProbe 阅读(1729) 评论(0) 推荐(0) 编辑
摘要: 如下这段代码,编译报错:Error : initial value of reference to non-const must be an lvalue#include using namespace std;void test(float *&x){ *x = 1000;}int main... 阅读全文
posted @ 2014-12-04 08:38 MindProbe 阅读(5493) 评论(0) 推荐(0) 编辑