代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/241005/4564431
pas ftpsrvc.pas
unit FtpSrvC;
interface
{$B-} { Enable partial boolean evaluation }
{$T-} { Untyped pointers }
{$IFNDEF VER80}
{$J+} { Allow typed constant
www.eeworm.com/read/233448/4683999
c array-quals-2.c
/* Test that pointers to arrays of differently qualified types aren't
permitted in conditional expressions, and that qualifiers aren't
lost in forming composite types. */
/* Origin: Joseph Myer
www.eeworm.com/read/229812/4738320
c diag0225.c
// BADEXPR.C -- CHECK FOR ERRORS IN EXPRESSIONS
//
// 91/09/16 -- Ian McHardy -- defined
#define COLON_COLON // :: defined
#define PTR_TO_MEM // pointers to
www.eeworm.com/read/229812/4751641
gml basedptr.gml
.beglevel
.*
.pp
Near pointers are generally the most efficient type of pointer because
they are small, and the compiler can assume knowledge about what
segment of the computer's memory the point
www.eeworm.com/read/227264/4776050
java dualialienarray.java
/**
* Description: provide dual pointers, all the elements must be different, and
* each element value is belong to [0, elemSize-1]
*
* @ Author Create/Modi Note
* Xiaofeng Xie
www.eeworm.com/read/226451/4784832
cpp func.cpp
/*
func.cpp -- A program demonstrating function pointers.
*/
#include
void TestFunc ();
int main ()
{
void (*FunctionName)(void);
FunctionName = TestFunc;
Fun
www.eeworm.com/read/221464/4831112
rst counting_iterator_eg.rst
Example
.......
This example fills an array with numbers and a second array with
pointers into the first array, using ``counting_iterator`` for both
tasks. Finally ``indirect_iterator`` is use
www.eeworm.com/read/221464/4831157
rst indirect_iterator_abstract.rst
``indirect_iterator`` adapts an iterator by applying an
*extra* dereference inside of ``operator*()``. For example, this
iterator adaptor makes it possible to view a container of pointers
(e.g. ``l
www.eeworm.com/read/221464/4831158
rst indirect_iterator_eg.rst
Example
.......
This example prints an array of characters, using
``indirect_iterator`` to access the array of characters through an
array of pointers. Next ``indirect_iterator`` is used with th
www.eeworm.com/read/210208/4951592
java dualialienarray.java
/**
* Description: provide dual pointers, all the elements must be different, and
* each element value is belong to [0, elemSize-1]
*
* @ Author Create/Modi Note
* Xiaofeng Xie