Java Hash Calculate calculateHash(int x, int y)

Here you can find the source of calculateHash(int x, int y)

Description

calculate Hash

License

Open Source License

Declaration

public static int calculateHash(int x, int y) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static int calculateHash(int x, int y) {
        return (x * 1000) + y;
    }//from   w  w  w  . j av  a  2 s  .  c o m
}

Related

  1. calculateHash(Long... ids)
  2. calculateHash(String str)
  3. calculateHashCode(byte a[])
  4. getHash(byte[] bytes)