求助
  • 板块灌水区
  • 楼主_LogicFish_
  • 当前回复3
  • 已保存回复3
  • 发布时间2025/1/18 09:59
  • 上次更新2025/1/18 13:25:21
查看原帖
求助
862827
_LogicFish_楼主2025/1/18 09:59

这是一段用于计时的C++代码(C++11)

struct Stopwatch{
	Stopwatch(chrono::nanoseconds& _res)
	:res{_res},
	 start{chrono::high_resolution_clock::now()} {}
	~Stopwatch()
	{
		res=chrono::high_resolution_clock::now()-start;
	}
	private:
		chrono::nanoseconds& res;
		chrono::time_point<chrono::high_resolution_clock> start;
};

报错了:
line 4: [Error] invalid initialization of non-const reference of type 'std::chrono::nanoseconds& {aka std::chrono::duration<long long int, std::ratio<1ll, 1000000000ll> >&}' from an rvalue of type '<brace-enclosed initializer list>'
所以怎么办

2025/1/18 09:59
1372510
tanshunqu2025/1/18 10:07

@LogicFish

是不是你的版本过低,我6.7.5都没报错

2025/1/18 10:07
862827
_LogicFish_楼主2025/1/18 10:15

@tanshunqu 5.9.2 不算低吧...
好像确实

我等下再试试

2025/1/18 10:15
1626767
zty2012zty2025/1/18 10:17

@LogicFish 小伙子,看你挺有资质的,加个团吧宣团:https://www.luogu.com.cn/team/98296

2025/1/18 10:17