接口是一些抽象方法和常量所组成的集合,(1) 接口可以定义多继承.多慎歼继承可以通过在extends后面使用多个父接口来实现.(2)接口不存在最高层,与类的最高层为Object类是不同的.(3)接口中的方法都是使用亏隐abstract修饰的方法(4)接口中的成员变量默认为final定义的常量
接口中不能实现任何方法,它的方法必须在继承它的类中实现.
(1)C语言:【SYNOPSIS】
#include <math.h>
double sqrt(double X)
float sqrtf(float X)
【DESCRIPTION】
DESCRIPTION
sqrt computes the positive square root of the argument. ...
【RETURNS】
On success, the square root is returned. If X is real and positive...
(2)perl语言:
$ 【perldoc】液蔽 -f sqrt
sqrt EXPR
sqrt#Return the square root of EXPR. If EXPR is omitted, returns
#square root of $_. Only works on non-negative operands, unless
#you've loaded the standard Math::Complex module.
(3)python语言:
$ 【pydoc】 math.sqrt
Help on built-in function sqrt in math:
math.sqrt = sqrt(...)
sqrt(x)
Return the square root of x.
(4)ruby语言:
$ 【橘闭ri】 Math::sqrt
Math::sqrt
Math.sqrt(numeric)=>float
Returns the non-negative square root of _numeric_.
注释:带有【】的代码是这个语言的闹伍州编程接口
(5)java语言:
http://download.oracle.com/javase/6/docs/api/
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)