Android Long to Byte Convert long2(long x)

Here you can find the source of long2(long x)

Description

long

Declaration

private static byte long2(long x) 

Method Source Code

//package com.java2s;

public class Main {
    private static byte long2(long x) {
        return (byte) (x >> 16);
    }//w  w w. ja va2 s . c  o  m
}