gpt4 book ai didi

c++ - 将宏转换为函数

转载 作者:行者123 更新时间:2023-11-30 21:21:37 25 4
gpt4 key购买 nike

如何将以下宏转换为函数?

#define xtime(x)   ((x<<1) ^ (((x>>7) & 1) * 0x1b))

最佳答案

template<typename T>
T xtime(T x)
{
return ((x<<1) ^ (((x>>7) & 1) * 0x1b));
}

关于c++ - 将宏转换为函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23281512/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com