代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/331439/12828966
m tril.m
function d = tril(v, k)
% TRIL Extract lower triangular part.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828976
m double.m
function d = double(q)
% DOUBLE Convert quaternion to double precision (obsolete).
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828980
m fix.m
function a = fix(q)
% FIX Round towards zero.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828992
m isempty.m
function tf = isempty(q)
% ISEMPTY True for empty matrix.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828996
m acosh.m
function Y = acosh(X)
% ACOSH Inverse hyperbolic cosine.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/325023/13232528
java overloadingorder.java
//: initialization/OverloadingOrder.java
// Overloading based on the order of the arguments.
import static net.mindview.util.Print.*;
public class OverloadingOrder {
static void f(String s, in
www.eeworm.com/read/309295/13675057
txt 新建 文本文档 (3).txt
java面试题集
关键词: java
第一,谈谈final, finally, finalize的区别。
final 用于声明属性,方法和类,分别表示属性不可变,方法不可覆盖,类不可继承。finally是异常处理语句结构的一部分,表示总是执行。finalize是Object类的一个方法,在垃圾收集器
www.eeworm.com/read/403011/11524324
h mytime1.h
// mytime1.h -- Time class before operator overloading
#ifndef MYTIME1_H_
#define MYTIME1_H_
class Time
{
private:
int hours;
int minutes;
public:
Time();
Time(int h, int m
www.eeworm.com/read/403011/11524336
h mytime2.h
// mytime2.h -- Time class after operator overloading
#ifndef MYTIME2_H_
#define MYTIME2_H_
class Time
{
private:
int hours;
int minutes;
public:
Time();
Time(int h, int m
www.eeworm.com/read/403011/11524341
h mytime0.h
// mytime0.h -- Time class before operator overloading
#ifndef MYTIME0_H_
#define MYTIME0_H_
class Time
{
private:
int hours;
int minutes;
public:
Time();
Time(int h, int m