代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/340665/3275409
c overload10.c
// Build don't link:
// GROUPS passed overloading
class Bed {
public:
static void bed_func(
int (*f)(int &, int, int));
};
class g_func {
public:
static int save_status;
// in c
www.eeworm.com/read/446555/1712108
cpp rational.cpp
// Filename: rational.cc
// Overloading functions
#include "rational.h"
ostream& operator
www.eeworm.com/read/446555/1712111
svn-base rational.cpp.svn-base
// Filename: rational.cc
// Overloading functions
#include "rational.h"
ostream& operator
www.eeworm.com/read/440906/1777041
c overload10.c
// Build don't link:
// GROUPS passed overloading
class Bed {
public:
static void bed_func(
int (*f)(int &, int, int));
};
class g_func {
public:
static int save_status;
// in c
www.eeworm.com/read/360971/2954971
cpp fig18_03.cpp
// Fig. 18.3: fig18_03.cpp
// Overloading the stream-insertion and
// stream-extraction operators.
#include
using std::cout;
using std::cin;
using std::endl;
using std::ostream;
www.eeworm.com/read/133648/14031351
java primitiveoverloading.java
//: c04:PrimitiveOverloading.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Promotion of primitives and overloading.
pub
www.eeworm.com/read/112273/15490462
java primitiveoverloading.java
//: c04:PrimitiveOverloading.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Promotion of primitives and overloading.
pub
www.eeworm.com/read/110993/15520707
cpp reflex.cpp
//: C12:Reflex.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Reflexivity in overloading
www.eeworm.com/read/110993/15520723
cpp comma.cpp
//: C12:Comma.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Overloading the ',' operator
www.eeworm.com/read/432289/8613580
cpp iosop.cpp
//: C12:Iosop.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Iostream operator overloading
// Example of