Java Long to Long2H(final long l)

Here you can find the source of Long2H(final long l)

Description

Generates an integer hashcode from a long value.

License

Open Source License

Parameter

Parameter Description
l The long value to turn into an integer hashCode.

Return

The integer hashcode for the long value.

Declaration

public static int Long2H(final long l) 

Method Source Code

//package com.java2s;
/**/*from   www.  j a v  a  2  s  .c  o m*/
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    /**
     * Generates an integer hashcode from a long value.
     *
     * @param l The long value to turn into an integer hashCode.
     *
     * @return The integer hashcode for the long value.
     */
    public static int Long2H(final long l) {
        return (int) (l ^ (l >>> 32));
    }
}

Related

  1. long2buff(long n)
  2. long2char(long x)
  3. long2Date(Long date, String interval)
  4. long2dotted(long address)
  5. long2FourChars(long i)
  6. long2leb(final long x, final byte[] buf, final int offset)
  7. long2longArr(long val, long[] res)
  8. long2MacAddress(long l)
  9. long2minLeb(final long x)