开发平台(Platform): (Ex: Win10, Linux, ...)
WIN10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
VS2003 、VS2015
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
喂入的资料(Input):
预期的正确结果(Expected Output):
错误结果(Wrong Output):
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
A.cpp
double* m_t_Matrix;
m_t_Matrix = new double[16];
double *&t_refer = m_t_Matrix;
GetMode(t_refer);
B.cpp
double* m_SecMatrix;
m_SecMatrix = new double[16];
GetMode(const double* &m_t_matrix)
{
m_t_matrix = m_SecMatrix;
}
补充说明(Supplement):
各位前辈好
上面片段程式可以在VS2003上执行
不过在VS2015会发生错误
1.const double *&(非常数限定的)的参考不能以类型double* 的值初始化
2.无法将引数从double* 转换为 const double *&
目前我的想法是A.cpp中 t_refer 是一个初始化为m_t_Matrix的double指标引用
而B.cpp中的函式会将带进来的变量作为const 指针本身的值可以改变指向的内容不可以改变
m_t_matrix 前加入& 作为传参考 所以他相当于读m_t_Matrix作计算
那在A.cpp中直接函式带入m_t_Matrix 不就可以了?
且想请问各位前辈这段程式用法是合理的吗?