代码搜索:operators

找到约 8,993 项符合「operators」的源代码

代码结果 8,993
www.eeworm.com/read/340665/3275255

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/340665/3275257

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/340665/3275258

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/340665/3275279

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/340665/3275281

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/340665/3275285

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/340665/3275296

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/340665/3275370

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/340665/3275408

c operators2.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/340665/3275456

c operators6.c

// Build don't link: // GROUPS passed operators class a { public: a* operator->() { return this; } void p(); }; void a::p() { operator->(); }