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.
intellij 的新手...如何在窗口中打印出变量的内容,例如?
一些有提示的窗口?
? myStringVariable "这是这里的内容"
打印到控制台是否足够?然后:System.out.println(myStringVariable)
System.out.println(myStringVariable)
调试的其他选项是(在断点中一次)-右键单击变量->评估表达式。调试器将显示变量的值(您也可以获取更复杂表达式的值)。