函数返回值为字符串的几种写法

Posted rain_1 ACM风雨历程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数返回值为字符串的几种写法相关的知识,希望对你有一定的参考价值。

#include <cstdio>
#include <cstring>
#include <iostream>

#include <string>
#include <Windows.h>
using namespace std;
void fun(char *s){//通过形参返回字符串
    strcpy(s, "hello");
}
char *fun2(char *s){//另一种写法,
    strcpy(s, "hello");
    return s;//返回形参地址,方便程序调用
}


char *fun3(void){
    static char s[100];//不能使非静态变量,否则子函数结束,局部变量被释放,调用者得到一个无效的地址。
    strcat(s, "hello");
    return s;
}
char *fun4(void){
    char *s;
    s = (char *)malloc(100);
    strcpy(s, "hello");
    return s;//返回s值,该地址需要调用者去free释放
}

//定义全局变量
char globle_buf[100];
void fun5(void){
    strcpy(globle_buf, "hello");
}
char *fun6(char *s){//另一种写法
    strcpy(globle_buf, "hello");
    return globle_buf; //返回全局变量地址,方便程序调用
}
int main(){
    
    char *s2;
    fun3();
    s2 = fun3();
    cout << s2 << endl;
    fun3();
    cout << s2 << endl;
    system("pause");
}

 

以上是关于函数返回值为字符串的几种写法的主要内容,如果未能解决你的问题,请参考以下文章

全面理解Javascript闭包和闭包的几种写法及用途

返回到上一页的html代码的几种写法

JavaScript 递归的几种写法

strcat的几种实现及性能比较

数组的几种常用方法总结

JS函数表达的几种写法