代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/470720/1447070
c overload11.c
// Build don't link:
// GROUPS passed overloading
class foo_int
{
public:
int & i;
foo_int (int &j) : i(j) {};
void inc () { i++; }
};
www.eeworm.com/read/470720/1447767
c warning3.c
// Bug: overloading of 'A' for template causes bogus shadowing warnings.
// Special g++ Options: -Wshadow
// Build don't link:
template
class A
{
public:
virtual ~A() {}
};
template cl
www.eeworm.com/read/470693/1456799
c spec2.c
// { dg-do compile }
// Origin:
// Bug: Overloading of ordinary and template member function
// which enclosing class is specialized is not handled correctl
www.eeworm.com/read/470693/1458917
c overload3.c
// Build don't link:
// GROUPS passed overloading
typedef int rutBoolean;
class rutBigIntRep
{
public:
friend rutBoolean operator>(const rutBigIntRep& a, const rutBigIntRep& b);
operator rutBool
www.eeworm.com/read/470693/1459016
c overload11.c
// Build don't link:
// GROUPS passed overloading
class foo_int
{
public:
int & i;
foo_int (int &j) : i(j) {};
void inc () { i++; }
};
www.eeworm.com/read/470693/1459713
c warning3.c
// Bug: overloading of 'A' for template causes bogus shadowing warnings.
// Special g++ Options: -Wshadow
// Build don't link:
template
class A
{
public:
virtual ~A() {}
};
template cl
www.eeworm.com/read/247171/4486767
vb propertyg.vb
'Author:
' Satya Sudha K (ksathyasudha@novell.com)
'
' (C) 2005 Novell, Inc.
'
'
' Property taking 'ParamArray' parameter, overloading of properties
Imports System
Module M
Dim a As Integer() =
www.eeworm.com/read/240162/4579928
c spec2.c
// { dg-do compile }
// Origin:
// Bug: Overloading of ordinary and template member function
// which enclosing class is specialized is not handled correctl
www.eeworm.com/read/240162/4581062
c ttp55.c
// { dg-do assemble }
// Testing overloading of function argument involving template template
// parameters
// Reported by Thomus Kunert
template
class H{};
www.eeworm.com/read/240162/4582158
c overload3.c
// { dg-do assemble }
// GROUPS passed overloading
typedef int rutBoolean;
class rutBigIntRep
{
public:
friend rutBoolean operator>(const rutBigIntRep& a, const rutBigIntRep& b);
operator rutBoo