单击在JetBrains Goland中指向另一个文件的功能后,如何返回上一个打开的文件?
组合 * To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package icecreamcones;
/**
*
*
*/
public class icecreamCones {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
int totalCones = 0;
int totalStrawberry = 0;
String readFile;
try {
TextIO.readFile("icecream.txt");
}
catch (IllegalArgumentException e) {
System.out.println("File not found!");
}
while(!TextIO.eof()){
readFile = TextIO.getln();
totalCones++;
if (readFile.equals("Strawberry")){
totalStrawberry++;
}
}
System.out.println("The total number of sold cones is: " + totalCones);
System.out.println("The total number of sold Strawberry flavoured cones is: "
+ totalStrawberry);
}
}
----------
I need to be able to print out the two statements so I need help figuring out how to make TextIO.readFile work.
对我不起作用。
答案 0 :(得分:2)
有几种方法可以实现此目的,具体取决于您的需求:
Switcher
或Ctrl + Tab
(在所有平台上),您可以使用Ctrl + Shift + Tab
功能在文件之间快速导航Recent Files
功能,该功能通过Windows / Linux上的Ctrl + E
和macOS上的⌘ + E
起作用Recent Locations
和macOS上的Ctrl + Shift + E
使用⌘ + Shift + E
功能Ctrl + Alt + Left Arrow
和macOS上的⌘ + [
或⌘ + Alt + Left Arrow
。向前转发的是:Windows / Linux上的Ctrl + Alt + Right Arrow
和macOS上的⌘ + ]
或⌘ + Alt + Right Arrow
如果Ctrl + Alt + Left/Right Arrow
对您不起作用,则可以转到Settings/Preferences | Keymap
并搜索Back
操作(在导航下)。这应该向您显示其绑定。您也可以尝试使用快捷方式,使用搜索框旁边的放大镜并按该快捷方式找到与操作相关联的操作。确保您的操作系统/其他应用程序不会干扰您的键盘快捷键。
如果您对此仍有疑问,最好在https://youtrack.jetbrains.com/issues/Go的官方跟踪器上打开支持记录,并通过Help | Compress Logs and Show in...
附加IDE日志。
答案 1 :(得分:0)