代码搜索:operators
找到约 8,993 项符合「operators」的源代码
代码结果 8,993
www.eeworm.com/read/190666/5174534
c operators27.c
// GROUPS passed operators
// opr-new file
// From: David Binderman 3841
// Date: Mon, 21 Jun 93 11:42:11 +0200
// Subject: G++ 2.4.3 and operator new
// Message-ID:
www.eeworm.com/read/190666/5174540
c operators31.c
// Build don't link:
// GROUPS passed operators
// opr-del file
// From: Eberhard Mattes
// Date: Thu, 4 Aug 94 08:19:20 +0200
// Subject: delete [] A::s
www.eeworm.com/read/190666/5174550
c operators29.c
// Build don't link:
// GROUPS passed operators
// (Message bugs/opr-del:4)
// From: jamshid@ses.com (Jamshid Afshar)
// Date: Fri, 25 Feb 94 18:44:01 CST
// Subject: Re: delete on "smart pointe
www.eeworm.com/read/190666/5174555
c operators4.c
// GROUPS passed operators
// opr-del file
// From: rollins@bart.ee.queensu.ca (Mark Rollins)
// Date: Thu, 3 Sep 1992 22:01:03 -0400 Fri, 4 Sep 1992 02:00:25 GMT
// Subject: delete [size] pointe
www.eeworm.com/read/190666/5174556
c operators33.c
// Build don't link:
// GROUPS passed operators
// opr-new file
// From: flisakow@cae.wisc.edu
// Date: Thu, 1 Sep 94 18:21:09 CDT
// Subject: g++ bug?
// Message-ID:
www.eeworm.com/read/190666/5174573
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/190666/5174599
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/190666/5174601
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/190666/5174602
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/190666/5174623
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;
}