gpt4 book ai didi

c++ - C++中如何将函数作为参数传递?

转载 作者:行者123 更新时间:2023-12-01 14:29:13 26 4
gpt4 key购买 nike

我有这个文件矩阵.h:

#ifndef MTM_MATRIX_H_
#define MTM_MATRIX_H_
#include <assert.h>


namespace mtm
{

template<class T>

class Matrix
{
T** data;
int col;
int row;
public:
Matrix(int row,int col, T intial=0);
T& operator()(int row, int col);
const T& operator() (int row, int col) const;
//some functions
template<typename Function>
Matrix<T> apply(Function function);

};
//ctor
template<class T>
Matrix<T>::Matrix(int row,int col, T intial):data(new T*[row]), col(col), row(row)
{

for (int i = 0; i < row; i++)
{
data[i] = new T[col];
}
for(int i=0;i<row;i++)
{
for(int j=0;j<col;j++)
{
data[i][j]=intial;
}
}
}
template<class T>
T& Matrix<T>::operator()(int row, int col)
{
return this->data[row][col];
}
template<class T>
const T& Matrix<T>::operator() (int row, int col) const
{
return this->data[row][col];
}
template<class T>
template<typename Function>
Matrix<T> Matrix<T>::apply(Function function)
{
Matrix<T> new_mat(this->row,this->col);
for(int i=0;i<new_mat.row;i++)
{
for(int j=0;j<new_mat.col; j++)
{
new_mat(i,j)= function(this->data[i][j]);
}
}
return new_mat;
}
}

#endif

我编辑了代码,现在我对同一个函数有不同的错误apply(Function function)


ps:如果需要更多关于我的类(class)的信息,请在评论中告诉我,不要在没有让我先编辑它的情况下就关闭我的问题..

错误:

test_partB.cpp: In function ‘int main()’:
test_partB.cpp:54:58: error: no matching function for call to ‘mtm::Matrix<int>::apply(Square) const’
const mtm::Matrix<int> mat_2=mat_1.apply(Square());
^
test_partB.cpp:54:58: note: candidate is:
In file included from test_partB.cpp:3:0:
Matrix.h:593:11: note: mtm::Matrix<T> mtm::Matrix<T>::apply(Function) [with Function = Square; T = int] <near match>
Matrix<T> Matrix<T>::apply(Function function)
^
Matrix.h:593:11: note: no known conversion for implicit ‘this’ parameter from ‘const mtm::Matrix<int>*’ to ‘mtm::Matrix<int>*’

使用函数的代码:

//this is **
const mtm::Matrix<int> mat_1(1,2,4);
const mtm::Matrix<int> mat_2=mat_1.apply(Square());

事情是我不能改变**

class Square { 
public:
int operator()(int val){
return val*val;
}
};

最佳答案

解决方案是像这样在类中声明函数

 template<typename Function>
Matrix<T> apply(Function function);

然后写它的正文并这样使用它:

template<class T>
template<typename Function>
Matrix<T> Matrix<T>::apply(Function function)
{
int k=3;
int n=function(k);
}

关于c++ - C++中如何将函数作为参数传递?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62660441/

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