C++进阶
zjguilai
公众号:从零归一(ID: zj201954yqx)
10年前高考的逆袭者,10年后的IT男转型成功者。从零归一的周而复始,在即将步入第二批奔三的队伍之际,清算过往,从零起航。在这里你能找到从零开始的勇气,抵达目标的方法和化零为整的心境。
展开
-
C++ primer plus plus 第二章学习:变量
//c++第二章1.1-3.2//1)变量名的命名//c++名称的长度没有限制,所有字符都有意义,可以用下划线或者大写字母隔开eeg:my_book_list or myBookList//_xx,__xx,_X,被保留给实现使用//2)数据类型//【整型】基本整型10种:char -> short -> int -> long -> long lo...翻译 2019-04-11 00:26:15 · 165 阅读 · 0 评论 -
C++ primer函数(2):数组不能直接传递,但是可以通过指针传递
//第七章:函数//函数基本知识//函数原型//按值传递函数参数//设计处理数组的函数//使用const指针参数//设计处理文版字符串的函数#include <iostream>using namespace std;const int Arsize = 8;int sum_arr(int arr[], int n);//or: int sum_arr(int *,...原创 2019-04-22 21:05:11 · 208 阅读 · 0 评论 -
C++ primer 函数(1)
//第七章:函数//函数基本知识//函数原型//按值传递函数参数//设计处理数组的函数//使用const指针参数//设计处理文版字符串的函数#include <iostream>void cheers(int);double cube(double x);int main(){ using namespace std; cheers(5); ...原创 2019-04-22 20:28:22 · 150 阅读 · 0 评论 -
C primer plus plus 模板类
//// main.cpp// pointer3//// Created by 炒饭 on 2019/4/14.// Copyright © 2019 炒饭. All rights reserved.//#include <iostream>#include <cstring>#include <vector>...原创 2019-04-14 21:49:36 · 179 阅读 · 0 评论 -
C primer plus plus 指针(2)
//// main.cpp// Pointer2//// Created by 炒饭 on 2019/4/14.// Copyright © 2019 炒饭. All rights reserved.//#include <iostream>int main(){ // insert code here... ...原创 2019-04-14 21:19:49 · 199 阅读 · 0 评论 -
C primer plus plus :指针(1)
//// main.cpp// point1//// Created by 炒饭 on 2019/4/14.// Copyright © 2019 炒饭. All rights reserved.////指针和变量值硬币的两面性#include <iostream>int main(){ // insert code he...原创 2019-04-14 19:10:58 · 285 阅读 · 0 评论 -
C primer plusplus :struct结构体
//// main.cpp// structChapter//// Created by 炒饭 on 2019/4/14.// Copyright © 2019 炒饭. All rights reserved.//#include <iostream>//外部声明,可以被其他函数调用,放在main函数之前struct inflatabl...原创 2019-04-14 17:50:49 · 225 阅读 · 0 评论 -
C primer plus plus :字符数组和字符串操作
//// main.cpp// myFourthChapter//// Created by 炒饭 on 2019/4/14.// Copyright © 2019 炒饭. All rights reserved.//#include <iostream>int main(){ // 字符串拼接和字符数组 us...原创 2019-04-14 17:18:10 · 164 阅读 · 0 评论 -
C++ primer 学习第一天「基本框架」
//1)如何创建c++程序//2)c++程序的一般格式//#include编译指令//3)使用cout对象进行输出//4)c++中加注释的规范//5)如何使用endl//6)声明和使用变量//7)cin对象进行输入//8)定义和使用简单的函数// main.cpp// c++FirstChapter//// Created by 炒饭 on 2...原创 2019-04-09 23:21:22 · 190 阅读 · 0 评论 -
c++Primer第四章温习:字符串结构体存储
//// main.cpp// myFourthCptimerplusplus//// Created by 炒饭 on 2019/4/12.// Copyright © 2019 炒饭. All rights reserved.////1)创建和使用数组//2)创建和使用C-风格的字符串//3)创建和使用String类//4)使用方法getline...原创 2019-04-13 00:06:46 · 380 阅读 · 0 评论 -
python:类
PYTHON 3.6类的操作方法class Complex: def __init__(self, realpart, imagpart): self.r = realpart self.i = imagpartx = Complex(3.0, -4.5)print(x.r, x.i) # 输出结果:3.0 -4.5class Test: ...原创 2019-04-15 17:29:15 · 106 阅读 · 0 评论 -
C++ primer温习第二章
//c++第二章1.1-3.2//1)变量名的命名//c++名称的长度没有限制,所有字符都有意义,可以用下划线或者大写字母隔开eeg:my_book_list or myBookList//_xx,__xx,_X,被保留给实现使用//2)数据类型//【整型】基本整型10种:char -> short -> int -> long -> long lo...原创 2019-04-11 22:38:38 · 188 阅读 · 0 评论 -
C++ primer函数:按值传递,修改数组,const double array[]
//第七章:函数//函数基本知识//函数原型//按值传递函数参数//设计处理数组的函数//使用const指针参数//设计处理文版字符串的函数#include <iostream>using namespace std;const int Max = 5;int fill_array(double ar[], int limit);void show_array(c...原创 2019-04-22 21:41:36 · 751 阅读 · 0 评论