Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查 Perl 中的一个字节是否设置为 0xFF。
我现在可以这样做来检查它:
unpack('C', $byte) == 255
但这似乎不是正确或最有效的方法。是否有一个速记符号来检查这个可能会更快?
简单呢?
if ($byte eq "\xff") { ... }