zhangchen 的文章
-
-
【无标题】
Python面向对象提升与收发邮件 1.多继承 打印123 class Person(object): def m(self): print(“123”) per = Person() per.m() 引入 from a import a 2.多态:…… -
Mount Azure Cloud VM File Share Folder With Tcp Port 445 Blocked By ISP
In this post, I am showing a way to mount Cloud VM’s File Share folder even in a situation which tcp port 445 has been blocked by your ISP. Ba…… -
2022年搬瓦工新年优惠码依然有效,全场优惠12.22%,美国CN2 GIA年付149.22美元起
今年元旦期间搬瓦工首次推出了一个新年优惠码,全场12.22%优惠,循环折扣,续费不涨价。现在这个搬瓦工新年优惠码虽然已经从首页移除了,不过VPS GO刚才试了下…… -
-
-
最大公约数(暴力求法与递归求法)
暴力法: int main() { int a,b; cin>>a>>b; while (b!= 0)//辗转相除 { int temp = a % b; a = b; b = temp; } int gcd=a;//gcd表示…… -
-
C++11 标准库 bind 函数
一、bind 是什么? bind 顾名思义: 绑定 通俗来讲呢,可以这么理解有点像函数指针的意思。 资料上是这么讲的:可以将 bind 函数看做一个通用函数的适配器,…… -
C++ map数据清理clear效率及彻底释放内存
模拟实际生产情况的测试代码,map中的value保存的是对象。 #include #include #include #include #include using namespace std; class useTest { public: ……
友情链接

