dynamic_cast&&基准测试(C++基础)

dynamic_cast

dynamic_cast是专门用于沿继承层次结构进行的强制类型转换,更像是一个函数, 不是编译时进行的类型转换,而是在运行时计算,正因如此,有小性能损失。

在基类和派生类之间相互转换。dynamic_cast常用来做验证,下图中开启运行时检查。

class Entity {
public:
	virtual void PrintName9() {}
};
class Player : public Entity{};
class Enemy : public Entity{};
int main() {
	Player* player = new Player();
	Entity* e = player;
	Enemy* e1 = new Enemy();
	//Enemy* e2 = (Enemy*)e;
	//Enemy* e2 = static_cast<Enemy*>(e);
	Player* e2 = dynamic_cast<Player*>(e1);
	Player* e3 = dynamic_cast<Player*>(e);
	//类似Java可以进行类型验证
	if (dynamic_cast<Player*>(e1) == NULL) {
		std::cout << "error";
	}
}

如果类型转换无效,就说明不是你声称的给定类型,那么就会返回null

使用需要rtti是打开状态,在绝大多数状态,打开会增加开销,但关闭可能会带来错误,如果只想优化,编写非常快的代码,需要避免使用。

基准测试

在这里复习了 如何编写计时类:

class Timer {
public:
	Timer() {
		m_StartTimepoint = std::chrono::high_resolution_clock::now();
	}
	~Timer() {
		stop();
	}
	void stop() {
		auto endTimepoint = std::chrono::high_resolution_clock::now();
		auto start = std::chrono::time_point_cast<std::chrono::microseconds>(m_StartTimepoint).time_since_epoch().count();
		auto end = std::chrono::time_point_cast<std::chrono::microseconds>(endTimepoint).time_since_epoch().count();
		auto duration = end - start;
		double ms = duration * 0.001;
		std::cout << "ns:" << duration<< "(ms:" << ms << ")" << std::endl;
	}
private:
	std::chrono::time_point<std::chrono::high_resolution_clock> m_StartTimepoint;

};

比较了三种方法创建指针的效率:

	{
		struct Vector2
		{
			float x, y;
		};
		{
			std::array<std::shared_ptr<Vector2>, 1000> sharedPtrs;
			Timer timer;
			for (int i = 0; i < sharedPtrs.size(); i++) {
				sharedPtrs[i] = std::make_shared<Vector2>();
			}
		}
		{
			std::array<std::shared_ptr<Vector2>, 1000> sharedPtrs;
			Timer timer;
			for (int i = 0; i < sharedPtrs.size(); i++) {
				sharedPtrs[i] = std::shared_ptr<Vector2>();
			}
		}
		{
			std::array<std::unique_ptr<Vector2>, 1000> sharedPtrs;
			Timer timer;
			for (int i = 0; i < sharedPtrs.size(); i++) {
				sharedPtrs[i] = std::make_unique<Vector2>();
			}
		}

	}

结果是最后一种最快,第一种中间,第二种最慢,因为第三种unique指针效率最高,而第二种需要构造shared_ptr所以他效率最低。

相关推荐
一只小bit29 分钟前
C++之初识模版
开发语言·c++
王磊鑫1 小时前
C语言小项目——通讯录
c语言·开发语言
钢铁男儿1 小时前
C# 委托和事件(事件)
开发语言·c#
Ai 编码助手1 小时前
在 Go 语言中如何高效地处理集合
开发语言·后端·golang
喜-喜2 小时前
C# HTTP/HTTPS 请求测试小工具
开发语言·http·c#
ℳ₯㎕ddzོꦿ࿐2 小时前
解决Python 在 Flask 开发模式下定时任务启动两次的问题
开发语言·python·flask
CodeClimb2 小时前
【华为OD-E卷 - 第k个排列 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
一水鉴天2 小时前
为AI聊天工具添加一个知识系统 之63 详细设计 之4:AI操作系统 之2 智能合约
开发语言·人工智能·python
apz_end2 小时前
埃氏算法C++实现: 快速输出质数( 素数 )
开发语言·c++·算法·埃氏算法
仟濹3 小时前
【贪心算法】洛谷P1106 - 删数问题
c语言·c++·算法·贪心算法