特殊写法

Posted yhgszi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了特殊写法相关的知识,希望对你有一定的参考价值。

  • num += 1   等价于 num = num + 1
  • num -= 1   等价于 num = num - 1
  • num *= 2   等价于 num = num * 2
  • num /= 2   等价于 num = num / 2
  • num //= 2  等价于 num = num // 2
  • num %= 2  等价于 num = num % 2
  • num **= 2  等价于 num = num ** 2

以上是关于特殊写法的主要内容,如果未能解决你的问题,请参考以下文章

特殊写法

.net程序config文件中特殊字符的正确写法

Collection类型的集合,定义只能Get时,也能通过特殊写法赋值

less中遇到的一些特殊的写法

HTML特殊字符的htmljscss写法汇总

C++11for循环的一种特殊写法