代码搜索:pointers

找到约 4,056 项符合「pointers」的源代码

代码结果 4,056
www.eeworm.com/read/220998/14780576

hpp hour12_1b.hpp

//Listing 12.1 // Passing pointers to objects // rename this file to simplecat.hpp class SimpleCat { public: SimpleCat (); // constructor SimpleCat(
www.eeworm.com/read/119097/14839182

1st readme.1st

The enclosed text file, a tutorial on pointers in the C programming language, is hereby placed in the Public Domain and is freely distributable. The author may be contacted at: Ted Jensen P.O.
www.eeworm.com/read/116388/14977142

cpp pr03010a.cpp

//////////////////////////////////////// // File Name: pr03010a.cpp //////////////////////////////////////// #include // Array of string pointers to be sorted. static const char* bro
www.eeworm.com/read/207008/15284246

h weakpointer.h

#ifndef _weakpointer_h_ #define _weakpointer_h_ /**************************************************************************** WeakPointer and CleanUp Copyright (c) 1991 by Xerox Corporation. A
www.eeworm.com/read/169899/5409632

c edbgapi.c

// // Copyright (c) Microsoft Corporation. All rights reserved. // // // Use of this source code is subject to the terms of the Microsoft end-user // license agreement (EULA) under which you lic
www.eeworm.com/read/167185/5464487

h distort.h

/* distort.h - include file for distort.c * * This material contains proprietary software of Entropic Speech, Inc. * Any reproduction, distribution, or publication without the prior * written
www.eeworm.com/read/162614/5520050

c deref1.c

// { dg-do assemble } // Copyright (C) 1999 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 1 Sep 1999 // [expr.unary.op]/1 says you can dereference all pointers exc
www.eeworm.com/read/162614/5522289

c pmem3.c

// { dg-do run } // Test that comparison of pointers to members does not complain about // contravariance violation. struct A { int i; }; struct B : public A { int j; int f (); }; int main () { in
www.eeworm.com/read/162614/5522478

c pmf3.c

// { dg-do assemble } // From: enewton@uunet.uu.NET // Subject: g++ 2.5.8: cannot cast member function pointers // Date: 27 Jan 1994 01:22:56 -0500 struct A { void f(char); void g(int); }; typede
www.eeworm.com/read/162614/5528070

c 20011106-1.c

/* Test that functions passed to the comma operator are correctly converted to pointers. */ /* Origin: Joseph Myers . */ void foo (void); void (*fp) (void); char x[sizeof (1, fo