摘要: c++中,char 和 unsigned char占8位 short占16位 int 32位(VScode中),long 32位,long long 64位 因此 short(默认是有符号类型)可表示的范围为 -32768~32767(即-2^15~2^15-1) 超过这个范围就会发生溢出 unsi 阅读全文
posted @ 2021-12-02 22:06 SanFranciscoo 阅读(563) 评论(0) 推荐(0) 编辑
摘要: "A character, a short integer, or an integer bit-field, all either signed or not, or an object of enumeration type, may be used in an expression where 阅读全文
posted @ 2021-11-29 17:01 SanFranciscoo 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/black_kyatu/article/details/79257346 float、double数据类型的表示范围及精度问题 c++ pp Page49 要弄清楚这个问题,首先要搞清楚浮点数在内存中的存储方式。浮点数,区别于定点数,指的是小数点位不 阅读全文
posted @ 2021-11-26 10:08 SanFranciscoo 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 官网: https://code.visualstudio.com/docs/cpp/introvideos-cpp 如果要重新配置vscode,完全删除vscode: https://www.jianshu.com/p/c822060ef8f2 vscode安装: https://zhuanlan 阅读全文
posted @ 2021-11-18 16:18 SanFranciscoo 阅读(60) 评论(0) 推荐(0) 编辑
摘要: https://www.cxyxiaowu.com/15953.html 阅读全文
posted @ 2021-11-16 23:44 SanFranciscoo 阅读(8) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_41137110/article/details/102644516 阅读全文
posted @ 2021-10-14 20:45 SanFranciscoo 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 参考视频: https://www.bilibili.com/video/BV1HJ411j7NG?p=2 一、Pandas基础操作 ▲:Pandas常用数据结构 1)Series创建 使用 pd.Series() 函数来创建一个Series对象,括号中的参数通常为一个列表、字典、数组等: 也可以自 阅读全文
posted @ 2021-08-28 22:26 SanFranciscoo 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 参考视频: https://www.bilibili.com/video/BV1HJ411j7NG?p=2 首先要安装Anaconda,安装好后配置环境变量,参考: https://blog.csdn.net/qq_40733911/article/details/87298373 安装好并配置环境 阅读全文
posted @ 2021-08-28 03:55 SanFranciscoo 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 参考视频: https://www.bilibili.com/video/BV1c4411e77t?p=2 参考文档: https://blog.csdn.net/ityard/article/details/102807071?utm_source=app&app_version=4.13.0 一 阅读全文
posted @ 2021-08-25 23:37 SanFranciscoo 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 以下内容参考: https://www.bilibili.com/video/BV1Fs411A7HZ?p=20&spm_id_from=pageDriver 十三、函数 python中用关键字 def 来创建函数。 函数的参数: 函数的返回值: 在函数中用关键字 return 返回值。 函数的形参 阅读全文
posted @ 2021-08-24 18:09 SanFranciscoo 阅读(40) 评论(0) 推荐(0) 编辑