代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/470720/1447180
c null1.c
// Test for overloading with g++ NULL.
void f (int *) { }
void f (char, char);
int main ()
{
f (__null);
}
www.eeworm.com/read/470693/1459126
c null1.c
// Test for overloading with g++ NULL.
void f (int *) { }
void f (char, char);
int main ()
{
f (__null);
}
www.eeworm.com/read/229812/4737369
cpp ovldall.cpp
#include
// completeness test for operator overloading
#define binop( op ) \
S& operator op( int d ) \
www.eeworm.com/read/190666/5174971
c null1.c
// Test for overloading with g++ NULL.
void f (int *) { }
void f (char, char);
int main ()
{
f (__null);
}
www.eeworm.com/read/340665/3275627
c null1.c
// Test for overloading with g++ NULL.
void f (int *) { }
void f (char, char);
int main ()
{
f (__null);
}
www.eeworm.com/read/321483/3534437
t scope_i.t
#!/usr/bin/perl -w
###############################################################################
# Test "no bigint;" and overloading of hex()/oct() for newer Perls
use Test::More;
use strict;
BEG
www.eeworm.com/read/321483/3534438
t scope_f.t
#!/usr/bin/perl -w
###############################################################################
# Test "no bignum;" and overloading of hex()/oct() for newer Perls
use Test::More;
use strict;
BEG
www.eeworm.com/read/321483/3534449
t scope_r.t
#!/usr/bin/perl -w
###############################################################################
# Test "no bigrat;" and overloading of hex()/oct() for newer Perls
use Test::More;
use strict;
BEG
www.eeworm.com/read/440906/1777259
c null1.c
// Test for overloading with g++ NULL.
void f (int *) { }
void f (char, char);
int main ()
{
f (__null);
}
www.eeworm.com/read/170709/9792654
cpp overloadincrement.cpp
// Listing 14.2
// Overloading the increment operator
#include
class Counter
{
public:
Counter();
~Counter(){}
int GetItsVal()const { return itsVal;