代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/413044/11169007

c names1.c

/* names1.c -- uses pointers to a structure */ #include #include struct namect { char fname[20]; char lname[20]; int letters; }; void getinfo(struct namect
www.eeworm.com/read/266070/11244016

c blockprocess.c

#include "tt.h" // Place the audio processing algorith here. The input and output are given // as unsigned integer pointers. void processBlock(unsigned int *inblock_ptr,unsigned int *outblock_ptr
www.eeworm.com/read/147363/12559138

h comip.h

/*** * comip.h - Native C++ compiler COM support - COM interface pointers header * * Copyright (C) 1996-1997 Microsoft Corporation * All rights reserved. * ****/ #if _MSC_VER > 1000 #pragma
www.eeworm.com/read/147143/12580726

java leaf.java

package rtree; import java.util.*; /** * A Leaf node. Containts pointers to the real data. * * Created: Tue May 18 13:04:08 1999 * * @author Hadjieleftheriou Marios * @version 1.002 *
www.eeworm.com/read/135259/13947623

h comip.h

/*** * comip.h - Native C++ compiler COM support - COM interface pointers header * * Copyright (C) 1996-1997 Microsoft Corporation * All rights reserved. * ****/ #if !defined(_INC_COMIP) #pr
www.eeworm.com/read/201477/15407248

cpp simul.cpp

// test simulated pointers #include #include "simul.h" void main(void) { int x; SimSpace L(5); x = L.Allocate(); cout
www.eeworm.com/read/108874/15572903

htm ei29.htm

Effective C++, 2E | Item 29: Avoid returning "handles" to internal data Back to Implementation Continue to Item 30: Avoid member functions that return non-const pointers or references to members less
www.eeworm.com/read/105274/15672232

h viewlistc.h

// // ViewListC.h // #ifndef _ViewListC_h_ #define _ViewListC_h_ #include "ViewC.h" /* * PListC.clas -- class definition file for class PListC * * This type of list stores only pointers to its
www.eeworm.com/read/101783/15817126

htm ei29.htm

Effective C++, 2E | Item 29: Avoid returning "handles" to internal data Back to Implementation Continue to Item 30: Avoid member functions that return non-const pointers or references to members less
www.eeworm.com/read/432289/8613721

h purge.h

//: :purge.h // From Thinking in C++, 2nd Edition // at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Delete pointers in an STL sequence container #if