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.
我目前正在使用 jsch 开发一个程序,并且正在查看 ChannelSftp 类。我只想知道退出和退出方法之间的区别。
在Sftp 示例的帮助字符串中,它显示"exit - Quit sftp"和"quit - Quit sftp".
"exit - Quit sftp"
"quit - Quit sftp"
那么,两者之间有什么区别以及如何正确使用它们呢?
两者都是一样的。在内部,他们只调用 disconnect();:
disconnect();
public void quit(){ disconnect();} public void exit(){ disconnect();}
非官方的 JSch 文档清楚地说明了这一点:exit, quit.
exit
quit