代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/201477/15407575

h schain.h

// chain using simulated pointers #ifndef SimChain_ #define SimChain_ #include #include #include "simul.h" #include "xcept.h" template class SimChain {
www.eeworm.com/read/113029/15472462

cpp fig05_26.cpp

// Fig. 5.26: fig05_26.cpp // Demonstrating an array of pointers to functions. #include using std::cout; using std::cin; using std::endl; // function prototypes void function1( i
www.eeworm.com/read/113029/15472464

cpp fig05_25.cpp

// Fig. 5.25: fig05_25.cpp // Multipurpose sorting program using function pointers. #include using std::cout; using std::cin; using std::endl; #include using std::set
www.eeworm.com/read/110993/15520725

h purge.h

//: :purge.h // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Delete pointers in an STL sequence cont
www.eeworm.com/read/284998/8877478

cpp functiontable.cpp

//: C03:FunctionTable.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Using an array of pointers
www.eeworm.com/read/184890/9067674

cpp functiontable.cpp

//: C03:FunctionTable.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Using an array of pointers
www.eeworm.com/read/281673/9142155

cpp functiontable.cpp

//: C03:FunctionTable.cpp // From Thinking in C++, 2nd Edition // Available at http://www.BruceEckel.com // (c) Bruce Eckel 2000 // Copyright notice in Copyright.txt // Using an array of pointers
www.eeworm.com/read/374502/9402095

c newio.c

/* $EPIC: newio.c,v 1.20 2004/03/25 04:26:59 jnelson Exp $ */ /* * newio.c: This is some handy stuff to deal with file descriptors in a way * much like stdio's FILE pointers * * IMPORTANT NOTE:
www.eeworm.com/read/373348/9461883

txt 15.txt

CS 1355 Introduction to Programming in C Monday 2006.10.30 (Week 8) Lecture notes (at http://r638-2.cs.nthu.edu.tw/C/notes/15.txt) Chapter 7: Pointers - Pointer declarations - Pointer operat
www.eeworm.com/read/175226/9555115

cpp list1509.cpp

// Listing 15.9. // Using typedef to make pointers to functions more readable #include using namespace std; void Square(int&,int&); void Cube(int&, int&); void Swap(int&, int &);