gpt4 book ai didi

java - 如何在Java中命名File对象及其对应的路径字符串

转载 作者:行者123 更新时间:2023-12-01 12:27:20 24 4
gpt4 key购买 nike

很多时候,我发现自己创建了两个像这样的对象:

String pathString = "/foo/bar";
File path = new File(pathString);

虽然变量命名是一个相当主观的问题,但 File 对象及其存储在 String 中的相应绝对文件路径最常见的命名约定是什么?

最佳答案

我想没有命名约定。我要么看看 constructor argument of File并以此命名,例如

String pathname = "/foo/bar";
File file = new File(pathname);

通常该文件在您的应用程序中有意义。所以我会选择一个能够描述它的名字。例如

String errorLogFilepath = "/var/log/error.log";
File errorLogFile = new File(errorLogFilepath);

关于java - 如何在Java中命名File对象及其对应的路径字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26214766/

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