代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/470693/1458728
c operators16.c
// GROUPS passed operators
// copy file
// From: gfm@mencon.mencon.oz.au (Graham Menhennitt)
// Date: Thu, 29 Apr 93 20:53:07 EST
// Subject: 4 bugs in g++ 2.3.3
// Message-ID:
www.eeworm.com/read/470693/1458754
c operators34.c
// Build don't link:
// GROUPS passed operators
class A {
public:
A() {
}
};
static class A *A_new_() {
return new class A;
}
www.eeworm.com/read/470693/1458756
c operators30.c
// GROUPS passed operators
// opr-mm file
// Date: Thu, 2 Jun 94 10:00:29 +0200
// From: chatty@cenatls.cena.dgac.fr (Stephane Chatty)
// Message-Id:
//
www.eeworm.com/read/470693/1458757
c operators18.c
// Build don't link:
// GROUPS passed operators
// opr-ampr file
// From: mecklen@oops.cs.utah.edu (Robert Mecklenburg)
// Date: Thu, 8 Oct 92 16:33:08 -0600
// Subject: Type conversion and over
www.eeworm.com/read/470693/1458778
c operators14.c
// Build don't link:
// GROUPS passed operators
void foo (int * a, int * b, int * c) {}
int main() {
int a,b,c;
foo (&a, &b, &c);
(a = b) = c;
}
www.eeworm.com/read/470693/1458780
c operators22.c
// Build don't link:
// GROUPS passed operators
template
class t {
public:
t() {}
};
class m {
t c;
public:
m() : c() {}
};
m *p() {return new m;}
www.eeworm.com/read/470693/1458784
c operators11.c
// Build don't link:
// GROUPS passed operators
// opr-eq file
// Message-Id:
// From: rowlands@hc.ti.com (Jon Rowlands)
// Subject: g++ 2.4.5: assignment operator in base cla
www.eeworm.com/read/470693/1458795
c operators3.c
// Build don't link:
// GROUPS passed operators
class X { };
void operator->(X& a, X& b) {} // MUST be a member function// ERROR - .*
www.eeworm.com/read/470693/1458869
c operators1.c
// Build don't link:
// GROUPS passed operators
struct A {
int x;
};
int operator()(A x,float y) { // MUST be a member function// ERROR - .*
return 1;
}
int main() {
A x;
x(1.0); // ERROR - no
www.eeworm.com/read/470693/1458907
c operators2.c
// Build don't link:
// GROUPS passed operators
class X { };
void operator[](X& a, X& b) {} // MUST be a member function// ERROR - .*