Switch to full style
C++ code examples
Post a reply

Define template in C++

Thu Nov 13, 2008 7:59 pm

In this code we define a new C++ template type.
Code:
#include <iostream>
using namespace std;

template <class type1, class type2>
void myFunction(type1 x, type2 y)
{
  cout << x << ' ' << y << '\n';
}

int main()
{
  myFunction(10, "hi");

  myFunction(0.23, 10L);

  return 0;
}
 


the output is :
10 Hi
0.23 10L



Post a reply
  Related Posts  to : Define template in C++
 Template to start HTML5     -  
 How to add Google plus button to smarty template (.tpl)     -  
 Define statement     -  
 Define new namespaces in C++     -  
 define final class     -  
 define UUID in your XSD schema     -  
 how to Define abstract class in php     -  
 Define your own exception class     -  
 define a Class with a Method     -  
 Define enum in java     -  

Topic Tags

C++ OOP