本文整理汇总了Java中java.io.File.hashCode方法的典型用法代码示例。如果您正苦于以下问题:Java File.hashCode方法的具体用法?Java File.hashCode怎么用?Java File.hashCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.io.File
的用法示例。
在下文中一共展示了File.hashCode方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: hashCode
import java.io.File; //导入方法依赖的package包/类
public static int hashCode(final File file) {
if (SENSITIVE == null) {
return file.hashCode();
}
if (SENSITIVE) {
// same as in UnixFileSystem
return file.getPath().hashCode() ^ 1234321;
} else {
// same as in Win32FileSystem
return file.getPath().toLowerCase(Locale.ENGLISH).hashCode() ^ 1234321;
}
}
示例2: DeepListener
import java.io.File; //导入方法依赖的package包/类
DeepListener(FileChangeListener listener, File path, FileFilter ff, Callable<Boolean> stop) {
super(listener, BaseUtilities.activeReferenceQueue());
this.path = path;
this.stop = stop;
this.filter = ff;
this.hash = 11 * listener.hashCode() + 7 * path.hashCode();
}
示例3: hashCode
import java.io.File; //导入方法依赖的package包/类
/**
* Returns a hash code value for this {@code Redirect}.
* @return a hash code value for this {@code Redirect}
*/
public int hashCode() {
File file = file();
if (file == null)
return super.hashCode();
else
return file.hashCode();
}
示例4: test
import java.io.File; //导入方法依赖的package包/类
static void test(String fn1, String fn2) throws Exception {
File f1 = new File(fn1);
File f2 = new File(fn2);
if (!f1.equals(f2))
throw new Exception("Instances with equal paths are not equal");
int h1 = f1.hashCode();
int h2 = f2.hashCode();
if (h1 != h2)
throw new Exception("Hashcodes of equal instances are not equal");
}
示例5: getFileLock
import java.io.File; //导入方法依赖的package包/类
private static Object getFileLock(final File file) {
return locks[(file.hashCode() & Integer.MAX_VALUE) % locks.length];
}
示例6: WeakFileEntry
import java.io.File; //导入方法依赖的package包/类
public WeakFileEntry(File entry)
{
// file object with 2 fields, string object with 2 fields, char-array object
super(entry, entry.hashCode(), 16 + 16 + 8 + entry.getPath().length() * 2);
}