[C]关于函数指针参数的赋值

时间:2023-01-08 17:06:28

问题

在有一次尝试用stat()函数获取文件属性的时候,发现如果直接声明一个指针,然后把这个指针作为参数传给函数,会导致函数执行失败,原代码:

#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
int main(void)
{
struct stat *sta_1;
char pth_1[] = "./c12.txt";
int re = stat(pth_1, sta_1);
printf("result = %d\n", re);
printf("size = %d\n", sta_1->st_size);
}

原因

我猜测是因为声明指针并不代表在正文创建了这个变量,实际上它只是一个属于这个类型的指针,并不指向任何变量。所以,但凡用指针传入函数赋值的情况,必须在程序正文声明这个变量。

示例代码1:

int main(void)
{
struct stat *sta_p;
struct stat stat_1;
sta_p = &stat_1;
char pth_1[] = "./c12.txt";
int re = stat(pth_1, sta_p);
printf("result = %d\n", re);
printf("size = %d\n", sta_p->st_size);
}

示例代码2:

int main(void)
{
struct stat stat_1;
char pth_1[] = "./c12.txt";
int re = stat(pth_1, &stat_1);
printf("result = %d\n", re);
printf("size = %d\n", (&stat_1)->st_size);
}

另一个案例,从文件读取内容到buff变量,也是必须在正文声明一个变量

#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <stdio.h> int main(void)
{
#define BUFFER 4096
char err_1[] = "Opps~an error occurred when copy.";
char buf[BUFFER];
short rnum = ;
char copy_1_pth[] = "./c14_copy.dat";
int copy_1_fd = open(copy_1_pth, O_RDWR|O_CREAT, );
while((rnum = read(STDIN_FILENO, buf, BUFFER)) != ){
if(rnum != write(copy_1_fd, buf, rnum)){
write(STDERR_FILENO, err_1, strlen(err_1));
break;
}
}
printf("Okay.\n");
}

[C]关于函数指针参数的赋值的更多相关文章

  1. C&plus;&plus; code:函数指针参数

    函数指针除了进行参数传递外,还承接申请的存储空间.释放空间等.而函数指针则主要是用来进行参数传递的,就像引用一样. 例如,我们来看一下函数指针的传递工作.在标准排序算法sort中,对于所提的整数容器v ...

  2. Delphi 函数指针(三大好处:灵活,委托的本质,回调机制),还可把函数指针当参数传入

    首先学习: 指向非对象(一般的)函数/过程的函数指针 Pascal 中的过程类型与C语言中的函数指针相似,为了统一说法,以下称函数指针.函数指针的声明只需要参数列表:如果是函数,再加个返回值.例如声明 ...

  3. Delphi 函数指针(函数可以当参数)

    首先学习: 指向非对象(一般的)函数/过程的函数指针 Pascal 中的过程类型与C语言中的函数指针相似,为了统一说法,以下称函数指针.函数指针的声明只需要参数列表:如果是函数,再加个返回值.例如声明 ...

  4. C&plus;&plus;对C语言的拓展(5)—— 函数重载和函数指针结合

    1.函数指针的介绍 函数指针指向某种特定类型,函数的类型由其参数及返回类型共同决定,与函数名无关.举例如下: int add(int nLeft,int nRight);//函数定义 该函数类型为in ...

  5. C&plus;&plus;基础 inline 默认参数 函数占位参数 函数重载

    1. inline内联函数 内联函数用于替换宏, 实例: 其中宏和 ++ 连用有副作用. #include "iostream" using namespace std; #def ...

  6. C&plus;&plus;——将成员函数作为参数

    在C++中,成员函数指针作为参数传递给其他函数和普通函数指针的传递是不同的,首先 我们来回顾一下普通函数指针的传递方法: //------------------------------------- ...

  7. c函数指针

    #include <stdio.h> int max(int a, int b){ return a > b ? a : b; } int min(int a, int b){ re ...

  8. Object C函数指针&commat;selector

    其作用相当于函数指针,现在我看到的大多说用法都是在调用某些函数需要传递一个 函数指针 参数时,使用@selector.它会在当前类里面查找selector后面所跟的函数,返回一个SEL类型的值.  S ...

  9. 成员函数指针与高效C&plus;&plus;委托 &lpar;delegate&rpar;

    下载实例源代码 - 18.5 Kb 下载开发包库文件 - 18.6 Kb 概要 很遗憾, C++ 标准中没能提供面向对象的函数指针. 面向对象的函数指针也被称为闭包(closures) 或委托(del ...

随机推荐

  1. Bootstrap3中&period;container和&period;container-fluid区别

    .container与.container_fluid是bootstrap中的两种不同类型的外层容器,按照官方的说法,这两者的区别是: .container 类用于固定宽度并支持响应式布局的容器..c ...

  2. Leetcode Evaluate Reverse Polish Notation

    Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are +, -, ...

  3. &lbrack;WCF实践&rsqb;1&period;WCF使用net&period;tcp寄宿到IIS中

    一.IIS部分 环境:Windows Server 2008 R2 1.安装WAS,如下图所示:   2.网站net.tcp协议绑定,如下图所示:   3.网站启用net.tcp,如下图所示:   二 ...

  4. Linux基础&colon; 网络命令和进程管理

    ​  netstat lsof ps pstree pkill/kill (了解jenkins git,排查环境) 查询服务器之间是否有链接(netstat -an) 某个服务是否启动(了解服务对应的 ...

  5. java反射之Constructor简单应用

    Constructor类是java反射中重要的类,它是对类中构造器的描述的类.类似于Method(对类中方法的描述的类),Field(对类中属性的描述的类). 通过创建Constructor的对象实例 ...

  6. Akka Stream文档翻译:Quick Start Guide&colon; Reactive Tweets

    Quick Start Guide: Reactive Tweets 快速入门指南: Reactive Tweets (reactive tweets 大概可以理解为“响应式推文”,在此可以测试下GF ...

  7. system&lpar;&rpar;、exec&lpar;&rpar;、fork&lpar;&rpar;三个与进程有关的函数的比较

    启动新进程(system函数) system()函数可以启动一个新的进程. int system (const char *string ) 这个函数的效果就相当于执行sh –c string. 一般 ...

  8. touch&period;js——常见应用操作

    touch.js--常见应用操作 基本事件: touchstart   //手指刚接触屏幕时触发 touchmove    //手指在屏幕上移动时触发 touchend     //手指从屏幕上移开时 ...

  9. Spring AOP获取方法的参数名称和参数值

    aop配置: <aop:aspectj-autoproxy expose-proxy="true" /> @Before(value = "execution ...

  10. 读 vue 源码一 (为什么this&period;message能够访问data里面的message)

    12月离职后,打算在年后再找工作了,最近陆陆续续的看了黄轶老师的vue源码解析,趁着还有几天过年时间记录一下. 目标:vue如何实现通过this.key,就能直接访问data,props,method ...