代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/325023/13232160
cpp instantiategenerictype.cpp
//: generics/InstantiateGenericType.cpp
// C++, not Java!
template class Foo {
T x; // Create a field of type T
T* y; // Pointer to T
public:
// Initialize the pointer:
Foo()
www.eeworm.com/read/138315/13241206
c os_cpu_c.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/138259/13244186
txt java语言中链表和双向链表的实现.txt
[文章导读]
链表是一种重要的数据结构,在程序设计中占有很重要的地位
[正文]
链表是一种重要的数据结构,在程序设计中占有很重要的地位。C语言和C++语言中是用指针来实现链表结构的,由于Java语言不提供指针,所以有人认为在Java语言中不能实现链表,其实不然,Java语言比C和C++更容易实现链表结构。Java语言中的对象引用实际上是一个指针(本文中的指针均为概念 ...
www.eeworm.com/read/138258/13244201
c strlen.c
#include
void main()
{
char string[] = "Mmmm! Love them pork rinds!";
char *s;
int x = 0;
/* initialize the pointer */
s = string;
while(*s++) x++;
p
www.eeworm.com/read/138258/13244251
c lovydovy.c
#include
void main()
{
int array[8];
int *a, x;
/* initialize the pointer */
a = array;
for(x=0;x
www.eeworm.com/read/138258/13244297
c fish.c
#include
void main()
{
char string[] = "Is it supposed to smell that way?";
char *s;
/* initialize the pointer */
s = string;
while(putchar(*s++))
;
www.eeworm.com/read/324725/13249820
pas ethash.pas
{
$create by mous 2006-03-18,
哈希表数据结构,非线程安全
由 IniFiles 里面的 StringHash 改写而来
支持 Integer / String 作为 Key 的哈希表
Value 类型 可以为 Integer / Pointer / Object
说明: 如果容量是一个素数,那么它的效率最
www.eeworm.com/read/239766/13257797
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/239510/13274726
pas depack.pas
function ApDepack(var Source, Destination) : DWORD; cdecl;
asm
@@_aP_depack_asm:
pushad
mov esi, [esp + 40]
mov edi, [esp + 44]
cld
mov dl, 80h
xor ebx, e