作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是家庭作业,任务是说明哪些变量在代码中标记为 *a*
, ..., *e*
的点可见,以及什么每个人都有的值(value)。谁能告诉我我的解决方案是否正确?
public class Zustand {
public static void main(String[] args) {
final int DIV = 24;
int variable;
int counter = 1;
{
// *a*
variable = counter++;
int y = 12;
variable += y;
counter++;
// *b*
}
final double d;
{
counter = 4;
double a = 10.0;
{
d = a + ++counter;
// c
}
counter = 3;
while (counter > 0) {
counter--;
a -= counter;
// *d*
}
}
variable = variable / DIV;
// *e*
}
}
首先有哪些变数?我对此的回答是:
final int DIV
整型变量
int 计数器
int y
最后的双 d
双 a
每个 *a*
, ..., *e*
有 6 个变量。我将分配给 6 元组 (DIV, variable, counter, y, d, a)
另一个 6 元组,其中元组的组件是数字,字符 w
,或符号 -
。 -
表示不可见。如果它是一个数字,则意味着它是可见的,并且该数字是分配给变量的值。如果它是字符 w
则表示没有值分配给变量但它是可见的。
所以,这是我的解决方案(对吗?)。如果有问题,请提示我可能在哪里出错。
*a*
= (24,w,1,-,-,-)*b*
= (24,14,2,12,-,-)*c*
= (24,14,4,12,15,10.0)*d*
= (24,14,0,12,15,4.0)*e*
= (24,0,0,12,15,4.0)最佳答案
如果你使用System.out.println
,它会帮你解决!
public static void main(String[] args) {
final int DIV = 24;
int variable;
int counter = 1;
{
// *a*
variable = counter++;
int y = 12;
variable += y;
counter++;
// *b*
System.out.println("y: " + y); // just an example
}
final double d;
{
counter = 4;
double a = 10.0;
{
d = a + ++counter;
// c
System.out.println("d: " + d); // just an example
}
counter = 3;
while (counter > 0) {
counter--;
a -= counter;
// *d*
System.out.println("a: " + a); // just an example
}
}
variable = variable / DIV;
// *e*
System.out.println("variable: " + variable); // just an example
System.out.println("DIV: " + DIV);
System.out.println("d: " + d);
System.out.println("counter : " + counter);
}
在您的控制台中,您会看到类似这样的内容。
y: 12
d: 15.0
a: 8.0
a: 7.0
a: 7.0
variable: 0
DIV: 24
d: 15.0
counter : 0
关于java - 识别 Java 程序中变量的状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55863169/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!