c++ 语法函数

函数定义

返回值 函数名(参数列表){

    函数体

    return xx

}

无返回值 不需要return 返回值类型为 void

int sum(int a,int b) {int sum = a + b;return sum;
}
int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int c = sum(10, 11);std::cout << c << std::endl;return 0;
}

值传递 函数的形参改变不会影响实参

void swap(int a, int b) {a = a + b;b = a - b;a = a - b;std::cout << "a=" << a << "b=" << b << std::endl;
}int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int a = 12;int b = 10;swap(a, b);std::cout << "end a=" << a << "end b=" << b << std::endl;return 0;
}

函数类型

有参有返

int sum(int a,int b) {int sum = a + b;return sum;
}
int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int c = sum(10, 11);std::cout << c << std::endl;return 0;
}

有参无返

void swap(int a, int b) {a = a + b;b = a - b;a = a - b;std::cout << "a=" << a << "b=" << b << std::endl;
}int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int a = 12;int b = 10;swap(a, b);std::cout << "end a=" << a << "end b=" << b << std::endl;return 0;
}

无参无返

void test(){std::cout << "no arg";
}

无参有返

int numb() {return  20;
}

函数声明 

注意函数声明可以有多次 但是定义只能有一次

// 声明
int max(int a, int b);
int main(int argc, const char * argv[]) {    int m = max(20, 15);std::cout << "max = " << m << std::endl;return 0;
}
//定义
int max(int a, int b) {return  a > b ? a : b;
}

函数分文件编写

1.创建后缀名为.h的头文件

2.创建后缀名为.cpp的源文件

3.在头文件中写函数的声明

4.在源文件中写函数的定义

头文件 mathutil.hpp

//
//  mathutil.hpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//#ifndef mathutil_hpp
#define mathutil_hpp#include <stdio.h>
void swap(int a, int b);
int sum(int a,int b);
#endif /* mathutil_hpp */

源文件 mathutil.cpp

//
//  mathutil.cpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//
#include <iostream>
#include "mathutil.hpp"
void swap(int a, int b) {a = a + b;b = a - b;a = a - b;std::cout << "a=" << a << "b=" << b << std::endl;
}int sum(int a,int b) {int sum = a + b;return sum;
}

调用

//
//  main.cpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//#include <iostream>
#include "mathutil.hpp"int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int c = sum(10, 11);std::cout << c << std::endl;int a = 12;int b = 10;swap(a, b);std::cout << "end a=" << a << "end b=" << b << std::endl;int m = max(20, 15);std::cout << "max = " << m << std::endl;return 0;
}

函数默认参数

返回值类型 函数名(参数=默认值) {}

 注意 如果某个位置起有默认值 后边的参数都要有默认值

         函数声明和实现只能一个有默认参数 不能同时有

//
//  main.cpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//#include <iostream>
#include "mathutil.hpp"
#include <string>
using namespace std;
// 注意 如果某个位置起有默认值 后边的参数都要有默认值
// 函数声明和实现只能一个有默认参数 不能同时有
int func_test2(int a, int b=3, int c=2);
int func_test(int a, int b, int c) {return  a + b + c;
}
int func_test1(int a, int b = 20, int c = 30) {return  a + b + c;
}
int func_test2(int a, int b, int c){return  a + b + c;
}
int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";std::cout << func_test(10, 1, 22) << std::endl;std::cout << func_test1(22,44) << std::endl;return 0;
}

占位参数

语法 

返回值类型 函数名(参数类型1,参数类型2){}

#include <iostream>
#include "mathutil.hpp"
#include <string>
using namespace std;
// 占位参数
void func_test4(int a,int){std::cout << "func_test4!\n";}
// 占位参数也可以有默认参数
void func_test5(int a,int = 20){std::cout << "func_test4!\n";}
int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";func_test4(109, 22);return 0;
}

函数重载

同一个作用域下

函数名相同

函数的参数类型不同或者函数参数的个数不同或者顺序不同

但是函数的返回值不可以作为重载条件

//
//  main.cpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//#include <iostream>
#include "mathutil.hpp"
#include <string>
using namespace std;
void test_func(){std::cout << "test_func!\n";
}
void test_func(int a){std::cout << "test_func(int a)\n";
}
void test_func(int a,int c){std::cout << "test_func(int a,int c)\n";}
//void test_func(int b,int a){
//    std::cout << "test_func(int b,int a)\n";
//
//}
void test_func(int a,double c){std::cout << "test_func(int a,double c)\n";}
void test_func(double a,int c){std::cout << "test_func(double a,int c)\n";}void test_func(double a){std::cout << "test_func(double a)\n";
}
void test_func(float a){std::cout << "test_func(float a)\n";
}int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";test_func();test_func(10);test_func(11.90,2);test_func(11.2222222222222222);test_func(22.4);return 0;
}

注意

 引用

//
//  main.cpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//#include <iostream>
#include "mathutil.hpp"
#include <string>
using namespace std;
void test_func1(int &a) {//引用必须引用合法的内存空间std::cout << "test_func1(int &a)\n";}
void test_func1(const int &a) {//const int a = 10;std::cout << "test_func1(const int &a)\n";
}int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int a = 10;test_func1(a);//test_func1(int &a) // 引用必须引用合法的内存空间test_func1(10);//test_func1(const int &a) // 相当于 const int a = 10;return 0;
}

 默认参数

//
//  main.cpp
//  cpplearn
//
//  Created by KING on 2024/2/1.
//#include <iostream>
#include "mathutil.hpp"
#include <string>
using namespace std;
void test_func2(int a) {std::cout << "test_func2(int a)\n";}
void test_func2(int a, int b = 10) {std::cout << "test_func2(int a)\n";}int main(int argc, const char * argv[]) {// insert code here...std::cout << "Hello, World!\n";int a = 10;//test_func2(a);//函数重载遇到默认参数的时候会遇到 二义性 尽量避免这种情况return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/663119.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

pytorch_car_caring 排坑记录

pytorch_car_caring 排坑记录 任务踩坑回顾简单环境问题代码版本问题症状描述解决方法 cuda问题&#xff08;异步问题&#xff09;症状描述解决方法 任务 因为之前那个MPC代码跑出来的效果不理想&#xff0c;看了一天代码&#xff0c;大概看明白了&#xff0c;但要做改进还要有…

C语言指针学习 之 指针是什么

前言 指针是C语言中一个重要概念&#xff0c;也是C语言的一个重要特色&#xff0c;正确而灵活地运用指针可以使程序简洁、紧凑、高效。每一个学习和使用C语言的人都应当深入的学习和掌握指针&#xff0c;也可以说不掌握指针就没有掌握C语言的精华。 一、什么是指针 想弄清楚什…

末世智能毁灭机械

在一个遥远的星球上&#xff0c;AI和机器人在末世中扮演着重要角色。由于一场毁灭性的灾难&#xff0c;人类文明几乎被彻底毁灭&#xff0c;幸存者被迫在废土中艰难求生。为了重建家园&#xff0c;人类和机器人联手&#xff0c;利用智能机械技术开始了重建工作。 然而&#xff…

应用层协议 ——— HTTP协议

应用层协议 ——— HTTP协议 HTTP简介认识URL二、登录信息三、服务器地址四、服务器端口号五、带层次的文件路径六、查询字符串七、片段标识符urlencode和urldecodeHTTP协议格式HTTP请求协议格式HTTP的方法HTTP的状态码HTTP常见的HeaderHTTPS VS HTTP对称加密 VS 非对称加密 HT…

Stable diffusion使用和操作流程

Stable Diffusion是一个文本到图像的潜在扩散模型,由CompVis、Stability AI和LAION的研究人员和工程师创建。它使用来自LAION-5B数据库子集的512x512图像进行训练。使用这个模型,可以生成包括人脸在内的任何图像,因为有开源的预训练模型,所以我们也可以在自己的机器上运行它…

C#基础题

值类型和引用类型之间的区别是什么&#xff1f; 值类型在内存中存储实际值&#xff0c;而引用类型存储对对象的引用。值类型在栈上分配内存&#xff0c;而引用类型在堆上分配内存。值类型是不可变的&#xff0c;而引用类型是可变的。值类型的大小是固定的&#xff0c;而引用类型…

Java工具类库Hutool

这里写目录标题 一、简介二、包含组件三、常用功能演示2、时间工具DateUtil3、数字类工具NumberUtil4、身份认证工具IdcardUtil5、信息脱敏工具DesensitizedUtil6、字段校验工具Validator7、集合工具类CollStreamUtil 一、简介 Hutool是一个小而全的Java工具类库&#xff0c;通…

类与对象

面向对象的程序设计 面对对象的程序 类 类 .... 类 设计程序的过程&#xff0c;就是设计类的过程。 面对对象的程序设计方法&#xff1a; 1.将某类客观事物共同特点&#xff08;属性&#xff09;归纳出来&#xff0c;形成一个数据结构&#xff08;可以用多个变量描述…

elementui 回到顶部报错

<template>Scroll down to see the bottom-right button.<el-backtop target".page-component__scroll .el-scrollbar__wrap"></el-backtop> </template> 使用element的Backtop 回到顶部组件的伙伴们&#xff0c;把官网代码复制到页面使用时…

定义HarmonyOS IDL接口

HarmonyOS IDL简介 HarmonyOS Interface Definition Language&#xff08;简称HarmonyOS IDL&#xff09;是HarmonyOS的接口描述语言。HarmonyOS IDL与其他接口语言类似&#xff0c;通过HarmonyOS IDL定义客户端与服务端均认可的编程接口&#xff0c;可以实现在二者间的跨进程…

SpringBoot+Vue实现各种文件预览(附源码)

&#x1f468;‍&#x1f4bb;作者简介&#xff1a;在笑大学牲 &#x1f39f;️个人主页&#xff1a;无所谓^_^ ps&#xff1a;点赞是免费的&#xff0c;却可以让写博客的作者开心好几天&#x1f60e; 项目运行效果 前言 在做项目时&#xff0c;文件的上传和预览必不可少。继上…

数字化转型:企业适应新常态的关键之举_光点科技

在全球商业环境不断演变和技术日新月异的背景下&#xff0c;数字化转型已经成为企业不可回避的课题。它不仅关乎企业的未来生存与发展&#xff0c;更是适应新常态、提升竞争力的关键之举。但是&#xff0c;数字化转型并非一夜之间可以完成的任务&#xff0c;它需要全面的策略规…

nosql数据库期末考试知识点总结

目录 1、什么是nosql数据库&#xff0c;它包括哪些 文档数据库 建数据 哪一种是最简单的 2、什么是文档数据库 3、创建mongodb时默认会建造三个数据库&#xff0c;是哪三个 4、mongodb支持的数据类型有哪些 5、它的常规语句有哪些 6、副本集和分片集有什么作用 复制 …

linux中vim的操作

(码字不易&#xff0c;关注一下吧w~~w) 命令模式&#xff1a; 当我们按下esc键时&#xff0c;我们会进入命令模式&#xff1b;当使用vi打开一个文件时也是进入命令模式。 光标移动&#xff1a; 1 保存退出&#xff1a;ZZ 2 代码格式化&#xff1a;ggG 3 光标移动&#xff…

JSP和JSTL板块:第一节 JSP追根溯源 来自【汤米尼克的JAVAEE全套教程专栏】

板块一 JSP和JSTL&#xff1a;第一节 JSP主要内容 一、什么是JSP二、IDEA的JSP相关配置1.UTF-8编码2.JSP代码模板 三、JSP的底层是Servlet四、Jsp的注释1.显式注释2.隐式注释 五、Scriptlet : 写在Jsp里的java脚本段 一、什么是JSP JSP: Java Server Page。SUN 公司提供的动态…

查询、导入导出、统计性能优化的一些总结

目录 1、背景 2、优化实现 2.1查询数据表速度慢 2.2调别人接口速度慢 2.3导入速度慢、 2.4导出速度慢的做出介绍 2.5统计功能速度慢 3、总结 1、背景 系统上线后&#xff0c;被用户反应系统很多功能响应时长很慢。用户页面影响速度有要求&#xff0c;下面针对查询数据表…

【Leetcode】2670. 找出不同元素数目差数组

文章目录 题目思路代码结果 题目 题目链接 给你一个下标从 0 开始的数组 nums &#xff0c;数组长度为 n 。 nums 的 不同元素数目差 数组可以用一个长度为 n 的数组 diff 表示&#xff0c;其中 diff[i] 等于前缀 nums[0, …, i] 中不同元素的数目 减去 后缀 nums[i 1, …, …

双非本科准备秋招(14.1)—— 力扣刷题

今天做两个有点难度的题。 1、295. 数据流的中位数 手写堆实现&#xff1a; 加入元素&#xff1a; 如何维护一个中位数&#xff1f;我们考虑一下堆的特点&#xff0c;大顶堆堆顶是一个最大值&#xff0c;小顶堆堆顶是一个最小值&#xff0c;那么&#xff0c;如果我们可以把数…

JSON转换类(下)

1、List转换成Json public static string ListToJson<T>(IList<T> list, string jsonName) { StringBuilder Json new StringBuilder(); if (string.IsNullOrEmpty(jsonName)) jsonName list[0].GetType().Name; J…