代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/162614/5521522
c overload9.c
// { dg-do assemble }
// GROUPS passed overloading
class CLogger
{
public:
void operator() (int,const char *) {}; // { dg-error "" } candidates
void operator() (int,const char *, ...) {};
www.eeworm.com/read/366702/2871125
c overload9.c
// { dg-do assemble }
// GROUPS passed overloading
class CLogger
{
public:
void operator() (int,const char *) {}; // { dg-error "" } candidates
void operator() (int,const char *, ...) {};
www.eeworm.com/read/366702/2871817
c warning3.c
// { dg-do assemble }
// { dg-options "-Wshadow" }
// Bug: overloading of 'A' for template causes bogus shadowing warnings.
template
class A
{
public:
virtual ~A() {}
};
template clas
www.eeworm.com/read/294203/8246657
m fprintf.m
function count = fprintf(FID, format, A)
% FPRINTF Write formatted data to file.
% (Quaternion overloading of standard Matlab function.)
%
% Only one quaternion argument is permitted, unlike the stand
www.eeworm.com/read/202486/15381772
cpp ex1109.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 11.9 on page 262
// Overloading the >> operator
#include // defines the asse
www.eeworm.com/read/191613/8426033
cpp ex0522.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 5.22 on page 109
// Overloading the max() function
#include // defines the c
www.eeworm.com/read/191613/8426232
cpp ex1107.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 11.7 on page 260
// Overloading the == operator
#include
using namespace std
www.eeworm.com/read/191613/8426541
cpp ex1106.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 11.6 on page 260
// Overloading the *= operator
#include
using namespace std
www.eeworm.com/read/287770/8670533
m mrdivide.m
function c = mrdivide(a,b)
% overloading of operator /
if isa(a,'signal') & isa(b,'signal')
error('Matrix division of two signals not supported.');
elseif isa(a,'signal') & ~isa(b,'signal')
if m