
编程语言
文章平均质量分 63
C++ Python C
Bungehurst
极限尤可突破,至臻亦不可止
展开
-
Python 传递元组参数
比如元组定义如下: # Color (r,g,b,alpha) Black = (0, 0, 0, 255) 当元组作为参数传递时,需要在名称前加“*” hp_render.set_color(*Red)原创 2020-12-29 21:17:17 · 3589 阅读 · 0 评论 -
Ubuntu16.04更新pip后报错sys.stderr.write(f”ERROR: {exc}”)
问题描述 Ubuntu16.04 更新pip后报错: Traceback (most recent call last): File "/usr/bin/pip", line 9, in <module> load_entry_point('pip==21.0.1', 'console_scripts', 'pip')() File "/usr/lib/python2.7/site-packages/pkg_resources.py", line 378, in load_ent原创 2021-03-11 00:40:49 · 1494 阅读 · 0 评论 -
C++ 基础面试题总结(一)
面向对象面向对象程序设计(Object-oriented programming,OOP)是种具有对象概念的程序编程典范,同时也是一种程序开发的抽象方针。面向对象三大特征 —— 封装、继承、多态封装把客观事物封装成抽象的类,并且类可以把自己的数据和方法只让可信的类或者对象操作,对不可信的进行信息隐藏。关键字:public, protected, private。不写默认为 private。public成员:可以被任意实体访问protected成员:只允许被子类及本类的成员函数访问private。原创 2023-11-05 20:54:07 · 508 阅读 · 2 评论 -
atan,atan2 in <math>
atan,atan2区别 atan atan2原创 2020-12-08 16:43:29 · 127 阅读 · 1 评论 -
C++实现读取BMP文件
头文件 #ifndef __FUNCTIONS_H_ #define __FUNCTIONS_H_ #include "Windows.h" using namespace std; class IMAGE_PROCESS{ private: WORD bfType; DWORD bfSize; WORD bfReserved1; WORD bfRes...原创 2019-05-10 10:03:51 · 1637 阅读 · 0 评论 -
C++ 函数指针
一般格式: 例如: //函数声明 bool length(const string &, const string &); //函数指针 bool (*pf)(const string &, const string &); 格式: 类型名 (*pf)(形参表) 函数指针的调用: bool b1 = pf("hello","world"); bool b...原创 2020-01-18 17:41:23 · 127 阅读 · 0 评论