Here you can find the source of acos(Long a)
Parameter | Description |
---|---|
a | the a |
public static double acos(Long a)
//package com.java2s; public class Main { /**// ww w.j av a 2 s .c om * Acos. * * @param a the a * @return the double */ public static double acos(Short a) { return Math.acos(a.doubleValue()); } /** * Acos. * * @param a the a * @return the double */ public static double acos(Integer a) { return Math.acos(a.doubleValue()); } /** * Acos. * * @param a the a * @return the double */ public static double acos(Float a) { return Math.acos(a.doubleValue()); } /** * Acos. * * @param a the a * @return the double */ public static double acos(Long a) { return Math.acos(a.doubleValue()); } /** * Acos. * * @param a the a * @return the double */ public static double acos(Double a) { return Math.acos(a); } }