gpt4 book ai didi

java - 在这种情况下我可以避免重复自己吗(Java)

转载 作者:行者123 更新时间:2023-11-29 04:01:48 27 4
gpt4 key购买 nike

 if (openFile == null) {

new AppFileDialog().chooseFile("Save", appFrame);

}

if (openFile == null) {

return;

}

这里我需要检查用户是否已经选择了一个文件。如果没有,系统会提示他们。如果文件仍然为空,则函数返回而不保存。问题是两个相同的 if 语句,我可以避免吗?我非常重视 DRY,但同时也 KISS。理想情况下两者是齐头并进的,但在这种情况下,它们似乎是相互排斥的。

最佳答案

不完全是,虽然我认为不同的结构会使问题更加明显:

// If no file, give the user a chance to open one
if (openFile == null) {
new AppFileDialog().chooseFile("Save", appFrame);

// still no file, user must not want to do this
if (openFile == null) {
return;
}
}

关于java - 在这种情况下我可以避免重复自己吗(Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3001984/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com