代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/128084/14317269
pas checksharemem.pas
unit CheckShareMem;
// Use this unit first so all memory allocations use the shared
// memory manager. The application and all DLLs must use this unit.
// You cannot use packages because those DL
www.eeworm.com/read/229763/14317758
asm exp2.asm
P0 DATA 080H ;PORT 0
SP DATA 081H ;STACK POINTER
DPL DATA 082H ;DATA POINTER - LOW BYTE
DPH DATA 083H ;DATA POINTER - HIGH BYTE
DPP DATA 084H ;DATA POINTER -
www.eeworm.com/read/128030/14318677
cpp ptrvar.cpp
// ptrvar.cpp
// pointers (address variables)
#include
using namespace std;
int main()
{
int var1 = 11; //two integer variables
int var2 = 22;
cout
www.eeworm.com/read/128030/14318749
cpp notvirt.cpp
// notvirt.cpp
// normal functions accessed from pointer
#include
using namespace std;
////////////////////////////////////////////////////////////////
class Base
www.eeworm.com/read/128030/14318756
cpp virt.cpp
// virt.cpp
// virtual functions accessed from pointer
#include
using namespace std;
////////////////////////////////////////////////////////////////
class Base
www.eeworm.com/read/127943/14326799
txt 8.txt
例程8-1
//CollectionDemo.java
import java.util.*;
public class CollectionDemo
{
public static void main( String[] args )
{
String strMonths[]={
"一月","二月","三月",
"四月","五月","六月",
"
www.eeworm.com/read/127943/14326925
java linkdemo.java
//LinkDemo.java
import java.io.*;
public class LinkDemo
{
/*构成链表的结点定义*/
class Node
{
Object data;
Node next;
Node(Object d)
{
data=d;
next=null;
}
}
//用变量来实现表
www.eeworm.com/read/127742/14338511
s_ sdk7a404_startup_entry_gnu.s_
/*;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; $Workfile: sdk7a404_startup_entry.asm $
; $Revision: 1.1 $
; $Author: WellsK $
; $Date: Sep 04 2003 16:01:30
www.eeworm.com/read/229326/14344936
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/229146/14351435
c usb_mem.c
/******************** (C) COPYRIGHT 2003 STMicroelectronics ********************
* File Name : usb_mem.c
* Author : MCD Application Team
* Date First Issued : 27/10/2003
* De