热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何将fucntionsumVec转换为模板函数-HowdoIturnthefucntionsumVecintoatemplatefunction

Igotthiscode(IknowitsinSpanishIcantranslateifneeded)wheretheygivemethefunctionS

I got this code (I know it's in Spanish I can translate if needed) where they give me the function SumVec. What the function does is it receives as parameters two arrays (integer pointers) and an integer (size) and returns a pointer to the sum of the two vectors or arrays. I have to convert it so it can receive any type, not just integer. I know that you do that with a template by using "template " but I've only done simple classes I don't know how to do it with pointers. Any help?

我得到了这个代码(我知道它是西班牙文,我可以翻译,如果需要),他们给我的功能SumVec。该函数的作用是作为参数接收两个数组(整数指针)和一个整数(大小),并返回指向两个向量或数组之和的指针。我必须转换它,以便它可以接收任何类型,而不仅仅是整数。我知道你通过使用“模板”使用模板来做到这一点,但我只做了简单的类,我不知道如何用指针来做。有帮助吗?

The code

#include 
#include 
using namespace std;
int * sumVec(int*, int*, int);
int main() {
int n, nCol, nFil = 0;
//Arreglo unidimensional dinmico
int *ptr, *suma, size;
cout <<"Cuantos Items va a procesar:";
cin >> size;
ptr = new int[size];//Asignando memoria al arreglo
//input
for (int i = 0;i> ptr[i];
}
//Mostrando el contenido del archivo
for (int i = 0;i

1 个解决方案

#1


0  

Granted your goal is to rewrite the sumVec function, you simply need to prefix your function with template and replace every int by T in your function. But I would recommend keeping int for the index type.

您的目标是重写sumVec函数,您只需要在函数前加上模板 ,并在函数中用T替换每个int。但我建议保留int作为索引类型。

template
T * sumVec(T* Array1, T* Array2, int Size) {
  T *ptr = new T[Size];
  for(int i=0; i

Please note you must define your function before calling it, e.g. https://ideone.com/ZAyCLs

请注意,您必须在调用之前定义您的功能,例如: https://ideone.com/ZAyCLs


推荐阅读
author-avatar
Candy王丫丫
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有