Java IO Tutorial - Java Path.hashCode()








Syntax

Path.hashCode() has the following syntax.

int hashCode()

Example

In the following code shows how to use Path.hashCode() method.

/*from  w w  w  .  ja v a  2  s.  com*/
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {

  public static void main(String[] args) {

    Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt");

    System.out.println(path.hashCode());

  }
}

The code above generates the following result.