1、 概念
(1)、类a声明中需要类b的类型,类b的声明中需要类a的类型
(2)、a类中的.h文件中包含b.h,类b的.h文件中包含a.h编译将无法通过,始终有类型没有声明,则用.h文件声明不能解决问题。
(3)、解决此问题,c++允许使用类的前置声明
语法:class 类型名;
前置声明:仅声明了类型名,没有指明其中任何成员名能用类型名定义对象,通过对象不能访问属性和方法
(4)、前置声明通常出现在.h文件中,用于说明类型名通常不出现在.cpp文件中,.cpp中前置声明意义不大 因为没有指明成员名,对象不能使用成员,几乎没有作用
2、 典型应用:
成员友元函数
代码形式一:
#include
using namespace std;
class exam;
class example
{
public:
example(int data);
void fun(exam &);
private:
int data;
};
class exam
{
public:
exam(int x = 0,int y = 0)
{
this->x = x;
this->y = y;
}
void display()
{
cout<
friend void example::fun(exam &);
private:
int x;
int y;
};
example::example(int data)
{
this->data = data;
}
void example::fun(exam &obj)
{
cout<
int main()
{
exam obj1(3,4);
example obj2(10);
obj2.fun(obj1);
return 0;
}
代码形式二:
两个类共计四个文件,和一个测试文件main.cpp
exam.cpp exam.h example.cpp example.h main.cpp
编译过程:
确保每一个.cpp文件都可以编译成.o文件
多个.o文件连接—》可执行程序
Exam.h
#ifndef EXAM_H
#define EXAM_H
#include “example.h”
class exam
{
public:
exam(int x = 0,int y = 0);
void display();
friend void example::fun(exam &);
private:
int x;
int y;
};
#endif
Exam.cpp
#include “exam.h”
#include
using namespace std;
exam::exam(int x,int y)
{
this->x = x;
this->y = y;
}
void exam::display()
{
cout<
Example.h
#ifndef EXAMPLE_H
#define EXAMPLE_H
class exam;
class example
{
public:
example(int data);
void fun(exam &obj);
private:
int data;
};
#endif
Example.cpp
#include “example.h”
#include “exam.h”
#include
using namespace std;
example::example(int data)
{
this->data = data;
}
void example::fun(exam &obj)
{
cout<
测试文件main.cpp
#include “exam.h”
#include “example.h”
int main()
{
exam obj1(3,4);
example obj2(20);
obj2.fun(obj1);
return 0;
}
你好! 这是你第一次使用 Markdown编辑器 所展示的欢迎页。如果你想学习如何使用Markdown编辑器, 可以仔细阅读这篇文章,了解一下Markdown的基本语法知识。
我们对Markdown编辑器进行了一些功能拓展与语法支持,除了标准的Markdown编辑器功能,我们增加了如下几点新功能,帮助你用它写博客:
撤销:Ctrl/Command + Z
重做:Ctrl/Command + Y
加粗:Ctrl/Command + B
斜体:Ctrl/Command + I
标题:Ctrl/Command + Shift + H
无序列表:Ctrl/Command + Shift + U
有序列表:Ctrl/Command + Shift + O
检查列表:Ctrl/Command + Shift + C
插入代码:Ctrl/Command + Shift + K
插入链接:Ctrl/Command + Shift + L
插入图片:Ctrl/Command + Shift + G
查找:Ctrl/Command + F
替换:Ctrl/Command + G
直接输入1次#,并按下space后,将生成1级标题。
输入2次#,并按下space后,将生成2级标题。
以此类推,我们支持6级标题。有助于使用TOC
语法后生成一个完美的目录。
强调文本 强调文本
加粗文本 加粗文本
标记文本
删除文本
引用文本
H2O is是液体。
210 运算结果是 1024.
链接: link.
图片:
带尺寸的图片:
居中的图片:
居中并且带尺寸的图片:
当然,我们为了让用户更加便捷,我们增加了图片拖拽功能。
去博客设置页面,选择一款你喜欢的代码片高亮样式,下面展示同样高亮的 代码片
.
// An highlighted block
var foo = 'bar';
一个简单的表格是这么创建的:
项目 | Value |
---|---|
电脑 | $1600 |
手机 | $12 |
导管 | $1 |
使用:---------:
居中
使用:----------
居左
使用----------:
居右
第一列 | 第二列 | 第三列 |
---|---|---|
第一列文本居中 | 第二列文本居右 | 第三列文本居左 |
SmartyPants将ASCII标点字符转换为“智能”印刷标点HTML实体。例如:
TYPE | ASCII | HTML |
---|---|---|
Single backticks | 'Isn't this fun?' |
‘Isn’t this fun?’ |
Quotes | "Isn't this fun?" |
“Isn’t this fun?” |
Dashes | -- is en-dash, --- is em-dash |
– is en-dash, — is em-dash |
一个具有注脚的文本。2
Markdown将文本转换为 HTML。
您可以使用渲染LaTeX数学表达式 KaTeX:
Gamma公式展示 Γ ( n ) = ( n − 1 ) ! ∀ n ∈ N \Gamma(n) = (n-1)!\quad\forall n\in\mathbb N Γ(n)=(n−1)!∀n∈N 是通过欧拉积分
Γ ( z ) = ∫ 0 ∞ t z − 1 e − t d t . \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. Γ(z)=∫0