代码搜索:pointers

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

代码结果 4,056
www.eeworm.com/read/199077/7889909

cpp hour11_2.cpp

//Listing 11.7 // Returning multiple values from a function by using references instead of pointers #include short Factor(int, int &, int &); // note the & instead of the * in the
www.eeworm.com/read/147766/5721111

c setup.c

/* * Setup pointers to hardware dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this
www.eeworm.com/read/128531/5983751

c setup.c

/* * Setup pointers to hardware dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this
www.eeworm.com/read/127781/5994994

c setup.c

/* * Setup pointers to hardware dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this
www.eeworm.com/read/110034/6166266

c setup.c

/* * Setup pointers to hardware dependent routines. * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this
www.eeworm.com/read/253866/12181176

cpp list0810.cpp

// Listing 8.10 - Using pointers with const methods #include using namespace std; class Rectangle { public: Rectangle(); ~Rectangle(); void SetLength(int lengt
www.eeworm.com/read/337775/12342056

h smartptrs.h

#if !defined SMART_PTRS_H #define SMART_PTRS_H //------------------------------------ // smartptrs.h // Smart pointers to objects // (c) Bartosz Milewski, 1996 //-----------------------------
www.eeworm.com/read/224820/14566983

h smartptrs.h

#if !defined SMART_PTRS_H #define SMART_PTRS_H //------------------------------------ // smartptrs.h // Smart pointers to objects // (c) Bartosz Milewski, 1996 //-----------------------------
www.eeworm.com/read/220998/14780530

cpp hour11_2.cpp

//Listing 11.7 // Returning multiple values from a function by using references instead of pointers #include short Factor(int, int &, int &); // note the & instead of the * in the
www.eeworm.com/read/220439/14800885

cpp pointing.cpp

// Pointing // Demonstrates using pointers #include #include using namespace std; int main() { int* pAPointer; //declare a pointer int* pScore = 0;