我该如何申请<<运算符和 ++字符指针 IN C 上的运算符
我想在字符指针上应用 <<
移位运算符,并希望在某个位置增加它的值。
例如: char *p;
在 *p
中,我想在某个特定位置应用左移 *(p+i) << 1
和 ++
在特定位置上递增运算符,例如 *(p+i)++
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不太确定我明白你想做什么,但如果你想做:
你可以将它们重写为:
I'm not really sure I understand what you want to do, but if you want to do:
You can rewrite them as:
看起来你在做穷人混淆(而不是说加密)
(假设strptr中以空结尾的字符串)
请注意,如果这是一个编码方案,如果高,信息会丢失(不可逆)使用了 char 的位(因此仅支持 7 位 ascii),并且解码时需要特别注意 127 输入值。
如果你坚持你可以这样做
*it = 1 + (*it) << 1;
.但是,您不能合法地将其与it++
结合使用,因为它会根据 C++/C 标准调用未定义的行为It looks like your doing poor-mans obfuscation (instead of say, encryption)
(assuming null-terminated string in strptr)
Note that if this is an encoding scheme, information is lost (nonreversable) if the high bit of the char is used (so only 7bit ascii is supported) and the 127 input value will need special attention when decodeing.
if you insist you could do
*it = 1 + (*it) << 1;
. However you cannot legally combine it withit++
because it would invoke undefined behaviour as per the C++/C standard