指针作为函数参量

指针作为函数参量,以地址的方式传递数据,可以用来返回函数处理结果;实参是数组名时形参可以是指针。

题目:读入三个浮点数,将整数部分和小数部分分别输出

#include <iostream>

using namespace std;

void  splitfloat(float x, int *intpart,  float *fracpart)

{  //形参intpart fracpart是指针

   *intpart=int(x); // x的整数部分

   *fracpart=x-*intpart; //x的小数部分

}

int main()

{

         int i, n;

         float x, f;    

         cout<<"Enter three(3) floating point numbers"
    << endl;

         for (i = 0; i < 3; i++)

         {

           cin >> x;

           splitfloat(x,&n,&f); //变量地址做实参

           cout<<"Integer Part is "<< n
      <<"   Fraction Part is "<<f<<endl;

         }

}

运行结果:

 

Enter three(3) floating point numbers

4.7

Integer Part is 4 Fraction Part is 0.7

8.913

Integer Part is 8 Fraction Part is 0.913

-4.7518

Integer Part is -4 Fraction Part is -0.7518

输出数组元素的内容和地址

#include <iostream>

#include <iomanip>

using namespace std;

void Array_Ptr(long *P, int n)

{        int i;

         cout<<"In func, address of array is "
    <<unsigned long(P)<<endl;

         cout<<"Accessing array using pointers"<< endl;

         for (i = 0; i < n; i++)

         { cout<<"   Address for index "<<i<<" is "
      <<unsigned long(P+i);

           cout<<"  Value is "<<*(P+i)<<endl;

         }

}

int main()

{        long list[5]={50, 60, 70, 80, 90};

                   cout<<"In main, address of array is "

      << unsigned long(list)<<endl;

         cout<<endl;

                 Array_Ptr(list,5);

}

某一次运行结果:

In main, address of array is 6684132

In func, address of array is 6684132

Accessing array using pointers

   Address for index 0 is 6684132  Value is 50

   Address for index 1 is 6684136  Value is 60

   Address for index 2 is 6684140  Value is 70

   Address for index 3 is 6684144  Value is 80

   Address for index 4 is 6684148  Value is 90

用指向常量的指针做形参

#include<iostream>

using namespace std;

const int N=6;

void print(const int *p,int n);

int main()

{  int array[N];

    for(int i=0;i<N;i++)

         cin>>array[i];

    print(array,N);

}

void print(const int *p, int n)

{

     cout<<"{"<<*p;

     for(int i=1;i<n;i++)

         cout<<"."<<*(p+i);

     cout<<"}"<<endl;

}

当函数的返回值是地址时,该函数就是指针型函数。声明:存储类型 数据类型 *函数名();

指向函数的指针  存储类型 数据类型 *函数名)();数据指针指向数据存储区,而函数指针指向的程序代码的存储区(函数名是函数代码的恰是地址)。

#include <iostream>

using namespace std;

void print_stuff(float data_to_ignore);

void print_message(float list_this_data);

void print_float(float data_to_print);

void (*function_pointer)(float);       //void类型的函数指针

 

int main()   //主函数

{

         float pi = (float)3.14159;

         float two_pi = (float)2.0 * pi;

         print_stuff(pi);

         function_pointer = print_stuff;        //函数指针指向print_stuff

      function_pointer(pi);    //函数指针调用,相当于调用print_stuff

      function_pointer = print_message; //函数指针指向print_message

      function_pointer(two_pi);      //函数指针调用

      function_pointer(13.0);          //函数指针调用

      function_pointer = print_float;       //函数指针指向print_float

      function_pointer(pi);    //函数指针调用

      print_float(pi);

}

void print_stuff(float data_to_ignore)

{        cout<<"This is the print stuff function.\n";    }

void print_message(float list_this_data)

{        cout<<"The data to be listed is "<<list_this_data<<endl;    }

void print_float(float data_to_print)

{        cout<<"The data to be printed is "<<data_to_print<<endl;    }

//运行结果:

 This is the print stuff function.

 This is the print stuff function.

 The data to be listed is 6.283180

 The data to be listed is 13.000000

 The data to be printed is 3.141590

 The data to be printed is 3.141590

C++——指针3的更多相关文章

  1. TODO:Golang指针使用注意事项

    TODO:Golang指针使用注意事项 先来看简单的例子1: 输出: 1 1 例子2: 输出: 1 3 例子1是使用值传递,Add方法不会做任何改变:例子2是使用指针传递,会改变地址,从而改变地址. ...

  2. enote笔记法使用范例(2)——指针(1)智能指针

    要知道什么是智能指针,首先了解什么称为 “资源分配即初始化” what RAII:RAII—Resource Acquisition Is Initialization,即“资源分配即初始化” 在&l ...

  3. C++虚函数和函数指针一起使用

    C++虚函数和函数指针一起使用,写起来有点麻烦. 下面贴出一份示例代码,可作参考.(需要支持C++11编译) #include <stdio.h> #include <list> ...

  4. C++11 shared_ptr 智能指针 的使用,避免内存泄露

    多线程程序经常会遇到在某个线程A创建了一个对象,这个对象需要在线程B使用, 在没有shared_ptr时,因为线程A,B结束时间不确定,即在A或B线程先释放这个对象都有可能造成另一个线程崩溃, 所以为 ...

  5. c 数组与指针的使用注意事项

    数组变量和指针变量有一点小小的区别 所以把数组指针赋值给指针变量的时候千万要小心 加入把数组赋值给指针变量,指针变量只会包含数组的地址信息 而对数组的长度一无所知 相当于指针丢失了一部分信息,我们把这 ...

  6. Marshal.Copy将指针拷贝给数组

    lpStatuss是一个UNITSTATUS*的指针类型实例,并包含SensorDust字段 //定义一个数组类型 byte[] SensorDust = new byte[30] //将指针类型拷贝 ...

  7. C++智能指针

    引用计数技术及智能指针的简单实现 基础对象类 class Point { public: Point(int xVal = 0, int yVal = 0) : x(xVal), y(yVal) { ...

  8. EC笔记:第三部分:17、使用独立的语句将newed对象放入智能指针

    一般的智能指针都是通过一个普通指针来初始化,所以很容易写出以下的代码: #include <iostream> using namespace std; int func1(){ //返回 ...

  9. 智能指针shared_ptr的用法

    为了解决C++内存泄漏的问题,C++11引入了智能指针(Smart Pointer). 智能指针的原理是,接受一个申请好的内存地址,构造一个保存在栈上的智能指针对象,当程序退出栈的作用域范围后,由于栈 ...

  10. 智能指针unique_ptr的用法

    unique_ptr是独占型的智能指针,它不允许其他的智能指针共享其内部的指针,不允许通过赋值将一个unique_ptr赋值给另一个unique_ptr,如下面错误用法: std::unique_pt ...

随机推荐

  1. 升级了NinjaLoveFish Excel量化表格

    为了方便查看均价和止盈值,新建了两列 这样做的好处就是,针对一个股票,可以实现不同的多个网格布局,然后分别实现各自的盈利设定. 例如这是网格1 那么同时也可以存在网格2 就可以实现多个网格布局到一个股 ...

  2. Ubuntu18.04安装mysql并配置远程访问

    1.ssh连接到Ubuntu服务器 默认root用户登陆,如果运行以下命令没有权限请在命令开头加sudo 2.安装mysql apt install mysql-server 3.配置mysql my ...

  3. SpringCloud入门学习

    我相信,如果小伙伴们能来到这里,肯定对微服务有一定的认识. 我们之前创建web项目的时候,常见的有两种方式: 1).创建一个war包,然后放在servlet容器中运行(比如Tomcat等); 2).使 ...

  4. java 关于xlsx(xls) 和 csv 文件的数据解析

    1.适用于xlsx 和 xls  <!--xlsx和xls文件pom依赖--> <dependency> <groupId>org.apache.poi</g ...

  5. MySql -- check 约束

    6.CHECK 约束:用于限制列中的值的范围 在一些情况下,我们需要字段在指定范围的输入,例如:性别只能输入 '男'或者'女',余额只能大于0等条件,我们除了在程序上控制以外,我们还能使用 CHECK ...

  6. 【MVC】Scripts.Render的用法

    一.配置BundleConfig.cs文件 1.首先要在App_Start 里面BundleConfig.cs 文件里面 添加要包含的css文件2.BundleConfig就是一个微软新加的 一个打包 ...

  7. 由于找不到opencv_world320d.dll,无法继续执行代码。解决方案

    将 opencv 安装路径 目录\opencv\build\x64\vc14\bin 中 3 个后缀是.dll 的应用程序扩展复制到 C:\Windows\System32 中 完美解决!

  8. 如何规范git commit提交

    相信很多人使用SVN.Git等版本控制工具时候都会觉得每次提交都要写一个注释有什么用啊?好麻烦,所以我每次都是随便写个数字就提交了,但是慢慢的我就发现了,如果项目长期维护或者修改很久之前的项目,没有一 ...

  9. C语言二级选择题考点汇总-数据结构与算法-【考点一】 什么是算法

      1.算法及其基本特征 算法是指对方案的准确描述,是解决问题的执行步骤. 算法不等于数学上的计算方法,也不等于程序.程序是算法的载体. 算法的基本特征如下: (1)可行性:步骤可实现,执行结果可达到 ...

  10. Spring mvc拦截器防御CSRF攻击

    CSRF(具体参考百度百科) CSRF(Cross-site request forgery跨站请求伪造,也被称为“One Click Attack”或者Session Riding,通常缩写为CSR ...