在术语之前或之后有--
或++
,例如Array[1] = Array[size--];
或int position = ++size;
答案 0 :(得分:2)
如果将++
或--
添加到变量的开头,那么无论何时程序运行并看到该特定代码,它都会递增,或者在该行的其余部分之前将变量递减1
例如:
int num = 20;
System.out.println(--num) // Changes num to 19 first, then prints 19 to the console
或者,在变量的后面添加“++”或“ - ”将在其他所有内容之后执行代码。
前:
int num = 20;
System.out.println(num++) // Prints 20 to the console, then changes num to 21
System.out.println(num) // This would now print 21
答案 1 :(得分:-1)
这意味着值会向上或向下计数
编辑:纠正我的失败:
size++;
等于size = size + 1;
和
size--
等于size = size -1;