代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/456367/7350994
cpp more_and.cpp
// more_and.cpp -- use logical AND operator
#include
const char * qualify[4] = // an array of pointers
{ // to strings
"10,000-meter race.\n",
www.eeworm.com/read/450608/7480291
m getnlab.m
%GETNLAB Get numeric labels
%
% [NLAB,LABLIST] = GETNLAB(A)
%
% The numeric labels of the dataset A are returned in NLAB.
% These are pointers to the list of labels LABLIST, so LABLIST(NLAB(i))
% i
www.eeworm.com/read/443900/7620791
cpp 4.11-const指针(复杂).cpp
//Listing 9.11
// Passing pointers to objects
#include
class SimpleCat
{
public:
SimpleCat();
SimpleCat(SimpleCat&);
~SimpleCat();
int GetAge() const { return itsAge; }
www.eeworm.com/read/441245/7672894
m getnlab.m
%GETNLAB Get numeric labels
%
% [NLAB,LABLIST] = GETNLAB(A)
%
% The numeric labels of the dataset A are returned in NLAB.
% These are pointers to the list of labels LABLIST, so LABLIST(NLAB(i))
% i
www.eeworm.com/read/435169/7796021
h webrom.h
/* Definitions for Web ROM filesystem */
/* The filesystem is in 1 or more ROMs. At the start of the first ROM is a
** directory of 1 or more filename blocks, each of which have pointers to
** da
www.eeworm.com/read/369629/7811409
h webrom.h
/* Definitions for Web ROM filesystem */
/* The filesystem is in 1 or more ROMs. At the start of the first ROM is a
** directory of 1 or more filename blocks, each of which have pointers to
** da
www.eeworm.com/read/199077/7889947
cpp hour09_1.cpp
// Listing 9.2 Using pointers
#include
using std::cout; // this file uses std::cout
int main()
{
int myAge; // a variable
int * pAge = 0; // a pointer --
www.eeworm.com/read/197252/8009462
h webrom.h
/* Definitions for Web ROM filesystem */
/* The filesystem is in 1 or more ROMs. At the start of the first ROM is a
** directory of 1 or more filename blocks, each of which have pointers to
** da
www.eeworm.com/read/333254/12692709
cpp ptrstr.cpp
// ptrstr.cpp -- using pointers to strings
#include
#include // declare strlen(), strcpy()
int main()
{
using namespace std;
char animal[20] = "bear";
www.eeworm.com/read/333254/12693217
cpp more_and.cpp
// more_and.cpp -- use logical AND operator
#include
const char * qualify[4] = // an array of pointers
{ // to strings
"10,000-meter race.\n",