码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-06-23 20:25:11      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:

#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");
}

 

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

标签:

原文地址:http://www.cnblogs.com/rain-1/p/5612054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!