课件真题学习实验_第1页
课件真题学习实验_第2页
课件真题学习实验_第3页
课件真题学习实验_第4页
课件真题学习实验_第5页
已阅读5页,还剩23页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

高级语言程序设计C++上机实验——指针、引用、动态内存分配张海威南开大学信息技术科学学院指针2Database

&

Information

System

Lab指针的定义(示范题1、2)指针变量指针所指地址指针所在地址指针变量的初始化指针的初始化方式数值型(整型)字符型不进行初始化可能产生内存错误指针3Database

&

Information

System

Lab程序示例#include<iostream.h>void

main(){int

a=4;int

*p=&a;cout<<&p<<endl;cout<<*p<<endl;cout<<p<<endl;}指针4Database

&

Information

System

Lab指针常量常量指针指针与数组指针访问数组元素各种表达方式数组指针各种表达式访问二维数组元素方式指针5Database

&

Information

System

Lab指针常量程序示例char

ch=’a’,ch1=’x’;char

*

const

ptr=&ch;//注意const放在类型说明之后,变量名之前*ptr=’b’;//正确,指向地址的值可以变

ptr=&ch1;//错误,指向的地址固定不变指针6Database

&

Information

System

Lab常量指针程序示例char

ch=’a’,ch1=’x’;const

char

*

ptr1=&ch;

//ptr1是常量指针*ptr1=’b’;//错误,指针指向地址的数据值不能改变

ptr1=&ch1;//正确指针指向数组元素的指针程序示例#include

<iostream>using

namespace

std;int

main(){inti,fibon[10]={0,1,1,2,3,5,8,13,21,34},*pfib1,*pfib2;pfib1=pfib2=fibon;//也可以用pfib1=pfib2=&fibon[0]cout<<"使用数组显示斐波那契数列"<<endl;for(i=0;i<10;i++)cout<<fibon[i]<<'\t'<<pfib1[i]<<endl;cout<<"使用指针显示斐波那契数列"<<endl;for(i=0;i<10;i++)cout<<*(fibon+i)<<'\t'<<*pfib2++<<endl;cout<<"显示指针相减,应为数组长度:";cout<<pfib2-pfib1<<endl;//pfib2已指向数组末尾

return

0;D}atabase

&

Information

System

Lab7指针Database

&

Information

System

Lab8数组指针程序示例#include<iostream.h>void

main(){int

(*pa)[4];//可理解为*pa为具有4个int型分量的一维数组名

int

A[3][4]={{11,12,13,14},{21,22,23,24},{31,32,33,34}

};pa=A;

//pa指向A数组的第一行

cout<<*(*(pa+2)+3)<<endl;//pa+2值为地址

cout<<(*pa)[0]<<""<<(*pa)[1]<<""<<(*pa)[2]<<""<<(*pa)[3]<<endl;//输出第一行4元素

pa++;//一步向后“迈过”pa所指向的那一个一维数组//的整体大小,使pa指向A数组的第二行

cout<<(*pa)[0]<<""<<(*pa)[1]<<""<<(*pa)[2]<<""<<(*pa)[3]<<endl;//输出第二行4元素}第6章指针、引用与动态内存分配Visual

Studio

6.0的使用1C++程序的基本架构2C++语言的基本概念Database

&

Information

System

Lab93C++程序示例4Diagram考虑数据和结构特征考虑文档内容、标签语义Add

Your

TextDatabase

&

Information

System

Lab10Add

Your

TextAdd

Your

Text考虑标签语义的结构相似度Add

Your

Text纯结构相似度Hot

TipDatabase

&

Information

System

Lab11How

do

I

incorporate

my

logo

to

aslide

thatwillapplytoalltheotherslides?On

the

[View]

menu,

point

to[Master],

and

then

click

[SlideMaster]

or

[Notes

Master].

Changeimages

to

the

one

you

like,

then

itwill

applytoall

theotherslides.DiagramGuild

Design

isone

of

alignedcompany

with

MicrosoftLtd,

and

we

developand

provide

the

designtemplates

for

Office

97,2000,

and

XP.ThemeGalleryis

a

Design

DigitalContent

&

Contentsmall

developed

byGuild

Design

Inc.TitleAdd

your

textDatabase

&

Information

System

Lab12CycleDiagramTextTextTextTextTextCycle

nameAdd

Your

TextDatabase

&

Information

System

Lab13DiagramTextTextTextAdd

YourTitle

TextText

1Text

2Text

3Text

4Text

5Add

YourTitle

TextText

1Text

2Text

3Text

4Text

5TextTextDatabase

&

Information

System

Lab14DiagramConceptAdd

Your

TextDatabase

&

Information

System

Lab15TextTextTextTextTextTextDiagramAdd

Your

TextAdd

Your

TextAdd

Your

TextAdd

Your

TextDatabase

&

Information

System

Lab16Add

Your

TextAdd

Your

TextAdd

Your

TextAdd

Your

TextDiagramAdd

Your

TextAdd

Your

TextAdd

Your

TextDatabase

&

Information

System

Lab17AddYourTitleDiagramAdd

Your

TextAdd

Your

TextAdd

Your

TextDatabase

&

Information

System

Lab18TextTextTextDiagramTextTextDatabase

&

Information

System

Lab19TextTextAdd

Your

TitleDiagramTitleDatabase

&

Information

System

Lab20Add

Your

TextAdd

Your

TextAdd

Your

TextAdd

Your

TextAdd

Your

TextAdd

Your

TextDiagram1ThemeGallery

is

aDesign

DigitalContent

&

Contentsmall

developed

byGuild

Design

Inc.2ThemeGallery

is

aDesign

DigitalContent

&

Contentsmall

developed

byGuild

Design

Inc.3Database

&

Information

System

Lab21ThemeGallery

is

aDesign

DigitalContent

&

Contentsmall

developed

byGuild

Design

Inc.Diagram2001200220032004Database

&

Information

System

Lab22Progress

DiagramPhase

1Phase

2Phase

3Database

&

Information

System

Lab23BlockDiagramTEXTDatabase

&

Information

System

Lab24TEXTTEXTTEXTTEXTTEXTTEXTTEXTTableTEXTTEXTTEXTTEXTTEXTTitle

ATitle

BTitle

CTitle

D

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论