代码搜索:overloading
找到约 1,176 项符合「overloading」的源代码
代码结果 1,176
www.eeworm.com/read/340665/3276382
c operator.c
// General test for operator overloading permissiveness.
// Build don't link:
// Special g++ Options:
typedef __SIZE_TYPE__ size_t;
struct A {
int operator?:(int a, int b); // WARNING -
stat
www.eeworm.com/read/340665/3276489
c tempargs.c
// Build don't link:
// GROUPS passed templates overloading
template class Vector { };
template struct Sort { static void sort (Vector &); };
template void
www.eeworm.com/read/285741/4046496
cpp employ2.cpp
/*
Employ2.cpp -- Testing operator overloading.
*/
#include
#include
#include
class CEmployee
{
public:
CEmployee (int ID, char *First, char
www.eeworm.com/read/440906/1777197
c overload5.c
// Build don't link:
// GROUPS passed overloading
class Foo
{
public:
int operator
www.eeworm.com/read/440906/1778014
c operator.c
// General test for operator overloading permissiveness.
// Build don't link:
// Special g++ Options:
typedef __SIZE_TYPE__ size_t;
struct A {
int operator?:(int a, int b); // WARNING -
stat
www.eeworm.com/read/440906/1778121
c tempargs.c
// Build don't link:
// GROUPS passed templates overloading
template class Vector { };
template struct Sort { static void sort (Vector &); };
template void
www.eeworm.com/read/422060/2044775
phpt 009.phpt
--TEST--
tidy_doc object overloading
--SKIPIF--
--FILE--
--EXPECT--
www.eeworm.com/read/402787/2317914
cpp ex8_09.cpp
// Ex8_09.cpp : main project file.
// Overloading operators in the value class, Length
#include "stdafx.h"
using namespace System;
value class Length
{
private:
int feet;
int inches;
www.eeworm.com/read/366702/2871170
c overload5.c
// { dg-do assemble }
// GROUPS passed overloading
class Foo
{
public:
int operator
www.eeworm.com/read/366702/2871197
c groff1.c
// { dg-do run }
// GROUPS passed groff
/* This should compile properly with the new overloading scheme. */
extern "C" int printf (const char *, ...);
extern "C" void exit (int);
int win = 0;
cla