zoukankan      html  css  js  c++  java
  • 函数返回值为字符串的几种写法

    #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");
    }
  • 相关阅读:
    easyui
    applicationContext.xml xxx-servlet.xml
    response ,request编码
    json 处理
    webservice wsdl 生成服务
    springmvc 定时器
    ftp命令和scp命令
    Telnet、FTP、SSH、SFTP、SCP
    mysql 索引
    民科吧 见闻录
  • 原文地址:https://www.cnblogs.com/rain-1/p/5612054.html
Copyright © 2011-2022 走看看