[基础] 模板+友元类外定义

下面这种定义方式会报错: Undefined symbols for architecture x86_64

template <typename T>
class longint{
public:
    T num;
    longint (T a = 0) {
        num = a;
    }

    friend ostream& operator<< (ostream& out, const longint<T>& Lint);
    ~longint (){
        ;
    }
private:
};

template <typename T>
ostream& operator<< (ostream &out, const longint<T> & Lint) {
    return out<<Lint.num;
}

改法一:将重载运算符的T改成S就行了

//类内声明时
template <typename S>
friend ostream& operator<< (ostream& out, const longint<S>& Lint);

//类外定义时
template <typename S>
ostream& operator<< (ostream &out, const longint<S> & Lint) {
    return out<<Lint.num;
}

改法二:直接在类内定义

friend ostream& operator<< (ostream& out, const longint<T>& Lint) {
    return out<<Lint.num;
}
时间: 2024-10-11 23:55:21

[基础] 模板+友元类外定义的相关文章

c++学习笔记之基础---类内声明函数后在类外定义的一种方法

在C++的“类”中经常遇到这样的函数, 返回值类型名 类名::函数成员名(参数表){ 函数体.} 双冒号的作用 ::域名解析符!返回值类型名 类名::函数成员名(参数表) { 函数体. } 这个是在类内声明函数后在类外定义的一种方法!如果不加"类名::"的话,编译系统就不会知道你的函数属于哪个类;另外,这样定义函数一定要在类中声明之后,说明它是类的成员函数才可以!在类内声明的时候就不需要::了,直接 返回值类型 函数名(参数表) 就可以了!

如何利用c++编写不能被继承、但可以在类外定义对象的类

1 #include <iostream> 2 #include<string> 3 #include<map> 4 #include<vector> 5 #include"thread_pool.h" 6 7 8 using namespace std; 9 template<class T> 10 class base{ 11 friend T;/// friend class 12 private: 13 base(){

C++类的成员函数(在类外定义成员函数、inline成员函数)

类的成员函数(简称类函数)是函数的一种,它的用法和作用和前面介绍过的函数基本上是一样的,它也有返回值和函数类型,它与一般函数的区别只是:它是属于一个类的成员,出现在类体中.它可以被指定为private(私有的).public (公用的)或protected(受保护的). 在使用类函数时,要注意调用它的权限(它能否被调用)以及它的作用域(函数能使用什么范围中的数据和函数).例如私有的成员函数只能被本类中的其它成员函数所调用,而不能被类外调用.成员函数可以访问本类中任何成员(包括私有的和公用的),可

C++ 中模板类的模板成员函数在类外定义

因为很多书都没讲到这种情况, 曾经有这个问题但一直没答案,所以我一直以为模板类的模板成员函数只能在类内定义,直到我在某个开源代码里看到原来要加两个 template<>  ............ (T_T) template<typename T1> class MyObjectT { public: template<typename T2> void Foo(T2 v); }; template<typename T1> template<typ

c++类外定义

1. #include <iostream> #include <string> #include<stdlib.h> using namespace std; class Teacher { public:     void setName(string _name); string getName(); void setGender(string _gender); string getGender(); void setAge(int _age); int get

WPF控件自绘——基础,Control类的定义

用于记录自己的学习WPF控件,大神请飘过... [WPF控件类继承关系图] 所有可以自定义模版的控件都是从Control继承,所以我们来看看Contorl类里面到底有些什么.为以后的控件自定义模版做好准备.废话少说先来看看WPF中Control类的定义 1 namespace System.Windows.Controls 2 { 3 public class Control : FrameworkElement 4 { 5 public static readonly DependencyPr

同文件类外定义

#include <iostream> #include <string> using namespace std; class teacher{ public: void setName(string _name); string getName(); void setGender(string _gender); string getGender(); void teach(); private: string strName; string strGender; }; voi

【C/C++学院】0825-类模板/final_override/类模板与普通类的派生类模板虚函数抽象模板类/类模板友元/位运算算法以及类声明/Rtti 实时类型检测/高级new创建/类以及函数包装器

类模板 类模板多个类型默认类型简单数组模板 #pragma once template <class T=int>//类模板可以有一个默认的值 class myArray { public: myArray(); ~myArray(); }; #include "myArray.h" template <class T=int>//每一个函数都需要加上一个默认的值 myArray<T>::myArray() //类模板成员函数在外部,需要加载类型初始

类模板,多种类型的类模板,自定义类模板,类模板的默认类型,数组的模板实现,友元和类模板,友元函数,类模板与静态变量,类模板与普通类之间互相继承,类模板作为模板参数,类嵌套,类模板嵌套,类包装器

 1.第一个最简单的类模板案例 #include "mainwindow.h" #include <QApplication> #include <QPushButton> #include <QLabel> template<class T> class run { public: T w; void show() { w.show(); } void settext() { w.setText("A"); }