C++ 基础思维导图(一)

目录

1、C++基础

IO流

namespace

引用、const

inline、函数参数

重载

2、类和对象

类举例

3、 内存管理

new/delete

对象内存分布

内存泄漏

4、继承

继承权限

继承中的构造与析构

菱形继承


1、C++基础

IO流

#include <iostream>
#include <iomanip> // 对于setprecision, setw等
#include <string>
#include <fstream> // 对于文件操作using namespace std;
int main()
{int num;cin >> num; // 输入流if (cin.fail()){cerr << "input not right"; // 标准err输出}cout << num << endl; // 标准输出// 二进制文件读写ofstream binfile("test.bin", ofstream::out | ofstream::binary);char in[] = "A";binfile.write(in, 1);binfile.put('B');binfile.close();ifstream ifile("test.bin", ofstream::in | ofstream::binary); // 直接构造也可以ifile.seekg(0, ifile.end);                                   // 跳转到文件末尾int length = ifile.tellg();                                  // 获取当前字符在文件当中的位置,即文件的字符总数ifile.seekg(0, ifile.beg);                                   // 重新回到文件开头char data[1024];ifile.read(data, length); // 将文件当中的数据全部读取到字符串data当中cout << data << endl;ifile.close(); // 关闭文件ofstream outFile("example.txt"); // 只读,创建 ofstream 对象if (!outFile){std::cerr << "Unable to open file for writing";return 1; // 返回错误代码}outFile << "hello" << endl;outFile << "test" << endl;outFile.close();ifstream input("example.txt"); // 只读if (!input){cerr << "Unable to open file";return 1;}std::string line;while (std::getline(input, line)){std::cout << line << std::endl;}input.close(); // 关闭文件fstream file("example.txt", std::ios::in | std::ios::out | std::ios::app);file << "\nAppending this line to the file." << std::endl;file.seekg(0, std::ios::beg);// 从文件读取数据并输出到控制台std::string line1;while (std::getline(file, line1)){std::cout << line1 << std::endl;}file.close(); // 关闭文件return 0;
}

namespace

#include <iostream>
using namespace std;
namespace A
{int a=1;
} // namespace A
namespace B
{int a=2;namespace C{struct T{int a=4;char c;};int a=3;} // namespace C 
}; // namespace B
int main()
{cout<<"A::a "<<A::a<<"; B::a "<<B::a<<"; C::a "<<B::C::a<<endl;B::C::T t1;cout<<t1.a<<endl; using B::C::T;T t2;cout<<t2.a<<endl;bool F=true;cout<<boolalpha<<F<<endl; //noboolalpha 输出1int a=1,b=2,c=3;auto max = (a > b) ? ((a > c) ? a : c) : ((b > c) ? b : c);//三目运算(a<b? a : b)= 30;//C中的三目运算符返回的是变量值,不能作为左值使用.而C++则可以在任意地方return 0;
}

引用、const

#include <iostream>
using namespace std;
struct A
{int a;char c;
};
void show(A *p)
{cout << "show func 指针调用前" << endl;cout << p->a << "\t" << p->c << endl;p->a = 20;cout << "show fun 指针修改调用后" << endl;cout << p->a << "\t" << p->c << endl;
}
void show1(A &p)
{cout << "show1 引用调用前" << endl;cout << p.a << "\t" << p.c << endl;p.a = 35;cout << "show1 引用修改调用后" << endl;cout << p.a << "\t" << p.c << endl;
}
void show2(A p)
{ // 临时变量实参的一份拷贝,修改对实参没有影响cout << "show2 传值调用前" << endl;cout << p.a << "\t" << p.c << endl;p.a = 45;cout << "show2 传值修改调用后" << endl;cout << p.a << "\t" << p.c << endl;
}
// 指针所指向的内存空间,不能被修改
int operA(const A *p)
{// p->a=10;return 0;
}
// 指针变量本身不能被修改
int operatorA1(A *const pT)
{pT->a = 10;// pT = NULL; //return 0;
}
// 指针变量和所指的值都不可以改变
int operatorA2(const A *const pT)
{// pT->a = 10;// pT = NULL; //cout << "A!" << endl;return 0;
}
// 数据交换, 值交换无法完成
void myswap(int i, int j)
{int c = 0;c = i;i = j;j = c;
}
// 数据交换, 指针直接对实参修改
void myswap1(int *i, int *j)
{int c = 0;c = *i;*i = *j;*j = c;
}
// 数据交换, 引用交换,引用做函数参数时不用初始化
void myswap2(int &i, int &j)
{int c = 0;c = i;i = j;j = c;
}
// 返回a的本身 a的副本
int getA1()
{int a = 10;return a;
}
/*想让引用返回可以用就需要将变量生命为static的
/*当函数返回值为引用时若返回栈变量不能成为其它引用的初始值
不能作为左值使用若返回静态变量或全局变量可以成为其他引用的初始值
即可作为右值使用,也可作为左值使用*/
int &getA2()
{int a = 20;// warning: reference to local variable ‘a’ returned [-Wreturn-local-addr]return a;
}
int *getA3()
{int a = 30;// warning: reference to local variable ‘a’ returnedreturn &a;
}
int main()
{// const  operatorA*const int x = 0;int const y = 2;// x=3;   y=2;//两个定义一样的效果,修改报错assignment of read-only variable 'x'// int const z; //未被初始化 error: uninitialized 'const z// 引用int var = 10;int &temp = var;                               // 引用需要初始化,像一个常量,有自己的空间sizeof与指针一样temp = 12;                                     // 变量的别名cout << "var: " << var << " " << temp << endl; // 修改引用同修改本身 12 12int temp1 = 10, temp2 = 110;cout << "berfor myswap temp1: " << temp1 << " temp2: " << temp2 << endl;myswap(temp1, temp2); // 数据交换, 值交换无法完成cout << "after myswap temp1: " << temp1 << " temp2: " << temp2 << endl;myswap1(&temp1, &temp2); // 指针传入交换cout << "after myswap temp1: " << temp1 << " temp2: " << temp2 << endl;myswap2(temp1, temp2); // 引用的本质时间接修改实参,编译器创造了指针然后修改// 间接赋值的三个条件,1)定义两个变量,2)变量之间建立关联,3)形参间接修改实参;引用是后两个条件合二为一cout << "after myswap temp1: " << temp1 << " temp2: " << temp2 << endl;cout << "   ----复杂类型引用 学习---- " << endl;A t = {101, 'A'}; // 结构体 列表初始化cout << "main调用指针调用前" << endl;cout << t.a << "\t" << t.c << endl; // 101 Ashow(&t);cout << "main调用指针调用后" << endl;cout << t.a << "\t" << t.c << endl;show1(t);cout << "main引用调用后" << endl;cout << t.a << "\t" << t.c << endl;show2(t);cout << "main传值调用后" << endl;cout << t.a << "\t" << t.c << endl;cout << "------函数返回值是一个引用-------" << endl;int ga = 1;int ga1 = 2;ga = getA1();// ga1=getA2(); //引用相当于指针,临时变量返回易出错。因为值被释放了// int &ga2=getA2(); //栈变量返回不能作为初始值cout << "ga: " << ga << endl;int *p = NULL; // 指针可以为null// p = getA3();// cout << *p << endl; // 证明了引用和指针一样,返回临时变量的指针,有可能被释放了再去使用出现异常return 0;
}

inline、函数参数

#include <iostream>
using namespace std;
#define MYFUNC(a,b)((a)<(b)?(a):(b))
inline void printA()
{int a = 10;cout << "a:" << a << endl;
}
inline int Myfun(int a,int b){return a<b?a:b;
}
struct A
{char c;int a;
};
void show(const A &m)
{// m.c=10; // error: assignment of member 'A::c' in read-only objectcout << m.a << endl;
}
//函数占位参数 函数调用时,必须写够参数
void func1(int a,int b, int){cout<<"a: "<<a<<" b: "<<b<<endl;
}
//默认参数与占位参数
void func2(int a,int b, int=0){cout<<"a: "<<a<<" b: "<<b<<endl;
}
// void func3(int a=0,int b){ 在默认参数规则 ,如果默认参数出现,那么右边的都必须有默认参数
// }
int main()
{int a = 10;int &b = a; // 普通引用必须初始化// int &c=10; //字面值不可以,引用要取地址int x = 12;const int &y = x; // 让变量引用只读属性不能通过y修改x// y=20; 不能修改, x可以改变x = 13;  //修改值y也变了// 常引用的初始化可以用变量或者常量值{const int a = 10;// int &m=11;const int &m = 40;}A t = {'1', 1};show(t);cout<<" ----inline--------"<<endl;printA();//与下相同// 	{// 		int a = 10;// 		cout<<"a"<<a<<endl;// 	}C++编译器直接将函数体插入在函数调用的地方//内联函数省去了普通函数调用时压栈,跳转和返回的开销int a1=1, b1=3;int c=MYFUNC(a1,b1);int d=Myfun(a1,b1);cout<<" define: a1: "<<a1<<" b1: "<<b1<<" c: "<<c<<endl;cout<<" inlice: a1: "<<a1<<" b1: "<<b1<<" d: "<<d<<endl;//int c1=MYFUNC(++a1,b1); //a=3 b=3 c=3 //==>宏替换并展开 ((++a) < (b) ? (++a) : (b))  //a=3 b=3 c=3// cout<<" define ++: a1: "<<a1<<" b1: "<<b1<<" c1: "<<c1<<endl;int d1=Myfun(++a1,b1);  //a=2 b=3 c=2cout<<" inlice ++: a1: "<<a1<<" b1: "<<b1<<" d: "<<d1<<endl;func1(a,b,c); //占位符必须有参数func2(a,b); //okfunc2(a,b,c); //okreturn 0;
}

重载

#include <iostream>
using namespace std;
int func(int x)
{return x;
}
int func(int x, int y)
{return x + y;
}
// 函数重载  和  函数默认参数 在一起
// int func(int x, int y, int c = 0)
// {
//     return x + y + c;
// }
auto func(const string &s)
{return s.size();
}
// void func(int x,int y){ //函数返回值不是函数重载的判断标准
//     x= x+y;
//     cout<<x<<endl;
// }
void func(string *s1, string *s2)
{cout << *s1 << "\t" << *s2 << endl;
}
// 定义一个函数类型
typedef int(myfun)(int a, int b);
myfun *f = nullptr; // 定义函数指针,指向函数入口
// 声明一个函数指针类型
typedef int (*myfunc1)(int a, int b);
//myfunc1 fp = nullptr;
// 定义一个函数指针 变量
void (*myVarPFunc)(int a, int b);
int main()
{int a = 0;a = func(1);cout << "func a: " << a << endl;// a=func(1,2);  //重载与默认参数在一起产生了二义性cout << "func1 a: " << a << endl;cout << "func2 a: " << func("abcd") << endl;string s = "abcde";string s1 = "hjic";func(&s, &s1);myfunc1 fp;fp = func;cout<<fp(1,3)<<endl;return 0;
}

2、类和对象

类举例

#include <iostream>
#include <string>class Student {
private:std::string name; // 学生姓名int age;          // 学生年龄public:// 默认构造函数Student() : name("Unknown"), age(0) {std::cout << "Default constructor called.\n";}// 带参数的构造函数Student(const std::string& name, int age) : name(name), age(age) {std::cout << "Parameterized constructor called for " << name << ".\n";}// 拷贝构造函数Student(const Student& other) {this->name = other.name; // 使用 this 指针this->age = other.age;   // 使用 this 指针std::cout << "Copy constructor called for " << this->name << ".\n";}// 拷贝赋值运算符Student& operator=(const Student& other) {if (this != &other) { // 防止自我赋值this->name = other.name; // 使用 this 指针this->age = other.age;   // 使用 this 指针std::cout << "Copy assignment operator called for " << this->name << ".\n";}return *this; // 返回当前对象的引用}// 析构函数~Student() {std::cout << "Destructor called for " << name << ".\n";}// 显示学生信息void display() const {std::cout << "Name: " << name << ", Age: " << age << "\n";}
};int main() {// 使用默认构造函数Student student1;student1.display();// 使用带参数的构造函数Student student2("Alice", 20);student2.display();// 使用拷贝构造函数Student student3 = student2; // 调用拷贝构造函数student3.display();// 使用拷贝赋值运算符Student student4;student4 = student2; // 调用拷贝赋值运算符student4.display();return 0;
}

3、 内存管理

new/delete

#include <iostream>
#include <cstdlib> // 包含 malloc 和 free 的头文件class MyClass {
public:MyClass() {std::cout << "MyClass constructor called.\n";}~MyClass() {std::cout << "MyClass destructor called.\n";}
};
int main() {// 使用 new 和 deletestd::cout << "Using new and delete:\n";MyClass* obj1 = new MyClass(); // 使用 new 分配内存delete obj1; // 使用 delete 释放内存// 使用 malloc 和 freestd::cout << "\nUsing malloc and free:\n";// 注意:malloc 只分配内存,不调用构造函数MyClass* obj2 = (MyClass*)malloc(sizeof(MyClass)); // 使用 malloc 分配内存if (obj2) {new (obj2) MyClass(); // 手动调用构造函数}// 使用 free 释放内存,但需要手动调用析构函数if (obj2) {obj2->~MyClass(); // 手动调用析构函数free(obj2); // 使用 free 释放内存}return 0;
}

对象内存分布

#include <iostream>
#include <string>class MyClass {
public:int value;MyClass(int v) : value(v) {std::cout << "constructor called for value: " << value << "\n"; //10}~MyClass() {std::cout << "destructor called for value: " << value << "\n";}
};// 全局变量,存储在数据区
MyClass globalObj(10); int main() {// 栈区对象MyClass stackObj(20); std::cout << "Address of stackObj: " << &stackObj << "\n";  //10// 堆区对象MyClass* heapObj = new MyClass(30);std::cout << "Address of heapObj: " << heapObj << "\n";// 数据区对象std::cout << "Address of globalObj: " << &globalObj << "\n";// 程序区(代码区)对象std::cout << "Address of main function: " << (void*)main << "\n";// 释放堆区对象delete heapObj;/*constructor called for value: 10constructor called for value: 20Address of stackObj: 0x6963bffbd4constructor called for value: 30Address of heapObj: 0x22296241640Address of globalObj: 0x7ff6cc537030Address of main function: 0x7ff6cc531450destructor called for value: 30destructor called for value: 20destructor called for value: 10*/return 0;
}

内存泄漏

#include <iostream>class MyClass {
public:MyClass() {std::cout << "MyClass constructor called.\n";}~MyClass() {std::cout << "MyClass destructor called.\n";}
};void createMemoryLeak() {MyClass* obj = new MyClass(); // 动态分配内存// 忘记释放内存,导致内存泄漏
}
void createNoMemoryLeak() {std::unique_ptr<MyClass> obj = std::make_unique<MyClass>(); // 使用智能指针// 不需要手动释放内存,智能指针会自动管理
}int main() {for (int i = 0; i < 5; ++i) {createMemoryLeak(); // 每次调用都会造成内存泄漏}std::cout << "Memory leak has occurred.\n";for (int i = 0; i < 5; ++i) {createNoMemoryLeak(); // 不会造成内存泄漏}return 0;
}

4、继承

继承权限

#include <iostream>
using namespace std;// 继承
// public 修饰的成员变量 方法 在类的内部 类的外部都能使用
// protected: 修饰的成员变量方法,在类的内部使用 ,在继承的子类中可用 ;其他 类的外部不能被使用
// private: 修饰的成员变量方法 只能在类的内部使用 不能在类的外部
// 这几个修饰符用在继承里影响的是子类的访问全限// 类型兼容性原则
class Parent
{
public:void show(){cout << " show 父类" << endl;a = 0;b = 1;c = 2;cout << "a: " << a << " b: " << b << " c: " << c << endl;}int a;Parent(){cout << " --父类 无参 构造 --" << endl;}Parent(const Parent &p){cout << " 父类 拷贝 构造--- " << endl;}protected:int b;private:int c;
};
class Child1 : public Parent
{
private:int c1; // 子类有自己的属性
public:int a1;void show1(){ // 访问控制a1 = 1;b1 = 2;c1 = 3;cout << " show child1 子类1" << endl;cout << a << b << a1 << b1 << c1 << endl;//<< c  在子类范围内父类里的属性不变,c是私有已经是类外了}protected:int b1;
};
class Child2 : protected Parent
{
public:int a2;void show2(){ // 访问控制 protected继承,public变成protected,a2 = 2;b2 = 4;c2 = 4;cout << " child2 子类2" << endl;cout << a << b << a2 << b2 << c2 << endl;//<< c  在子类范围内父类里的属性不变,c是私有已经是类外了}protected:int b2;private:int c2; // 子类有自己的属性
public:
};
class Child3 : private Parent
{
public:int a3;void show3(){ // 访问控制 私有继承,全变私有,a = 0;b = 1;a3 = 4;b3 = 4;c3 = 5;cout << " child3 子类3" << endl;cout << a << b << a3 << b3 << c3 << endl;//<< c  在子类范围内父类里的属性不变,c是私有已经是类外了}protected:int b3;private:int c3;
};
void howShow(Parent *base){ //指针base->show();//父类成员函数
}
void howShow1(Parent &base){ //引用base.show();//父类成员函数
}int main()
{Child1 cl;// 子类继承了父类的所有属性和方法cout << " 公有继承 " << endl;cl.a = 1; // public ,类外可以// 全是类外不可以访问//  cl.b=1;//  cl.c=1;//  cl.a1=2;//  cl.b1=2;//  cl.c1=3;cl.show1();cout << " 保护共有继承 " << endl;Child2 c2;// 子类继承了父类的所有属性和方法// c2.a = 1; //变protected ,类外可以// 全是类外不可以访问// c2.b=1;// c2.c=1;// c2.a2=2;// c2.b2=2;// c2.c2=3;c2.show2();Child3 c3;// 私有更不用说了c3.show3();Parent p1;p1.show();//基类指针指向子类Parent *p=nullptr;p=&cl;p->show();//指针做函数参数howShow(p);howShow(&cl);//引用做函数参数howShow1(p1);howShow1(cl);//第二层含义//可以让子类对象   初始化   父类对象//子类就是一种特殊的父类Parent p3 = cl;return 0;
}

继承中的构造与析构

#include <iostream>
#include <cstring>
using namespace std;/*1、子类对象在创建时会首先调用父类的构造函数2、父类构造函数执行结束后,执行子类的构造函数3、当父类的构造函数有参数时,需要在子类的初始化列表中显示调用4、析构函数调用的先后顺序与构造函数相反
*/
class Object
{
public:Object(int a, int b){this->a = a;this->b = b;cout<<"object构造函数 执行 "<<"a"<<a<<" b "<<b<<endl;}~Object(){cout<<"object析构函数 \n";}
protected:int a;int b;
};
class Parent : public Object
{
public:Parent(int p) : Object(1, 2){this->p = p;cout<<"父类构造函数..."<<p<<endl;}~Parent(){cout<<"析构函数..."<<p<<endl;}void printP(int a, int b){cout<<"我是爹..."<<endl;}
protected:int p;};
class child : public Parent
{
public:child(int p) : Parent(p) , obj1(3, 4), obj2(5, 6){this->p = p;cout<<"子类的构造函数"<<p<<endl;}~child(){cout<<"子类的析构"<<p<<endl;}void printC(){cout<<"我是儿子"<<endl;}
protected:int p;Object obj1;Object obj2;
};

菱形继承

#include <iostream>// 基类
class Base {
public:void show() {std::cout << "Base class show function called.\n";}
};// 派生类 A
class DerivedA : public Base {
public:void show() {std::cout << "DerivedA class show function called.\n";}
};// 派生类 B
class DerivedB : public Base {
public:void show() {std::cout << "DerivedB class show function called.\n";}
};// 最终派生类 C
class DerivedC : public DerivedA, public DerivedB {
public:void show() {std::cout << "DerivedC class show function called.\n";}
};int main() {DerivedC obj;// 调用 DerivedC 的 show 方法obj.show(); // 输出 DerivedC 的 show 方法// 访问基类的 show 方法obj.DerivedA::show(); // 明确调用 DerivedA 的 show 方法obj.DerivedB::show(); // 明确调用 DerivedB 的 show 方法return 0;
}

在菱形继承中,DerivedC 通过 DerivedA 和 DerivedB 都继承了 Base 类的成员。如果不明确指定,编译器无法确定应该调用 DerivedA 还是 DerivedB 中的 Base 类成员,这就导致了二义性。

如果加virtual就可以访问基类的 show 方法 obj.Base::show(); // 通过虚继承,只有一个 Base 的实例 。

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

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

相关文章

Java - 日志体系_Apache Commons Logging(JCL)日志接口库_桥接Logback 及 源码分析

文章目录 PreApache CommonsApache Commons ProperLogging &#xff08;Apache Commons Logging &#xff09; JCL 集成logbackPOM依赖配置文件 logback.xml使用 源码分析jcl-over-slf4j 的工作原理1. LogFactory 的实现2. SLF4JLogFactory 和 Log 的实例化过程3. SLF4JLog 和 …

中小企业如何进行数字化转型?

​在这个日新月异的数字时代&#xff0c;企业数字化转型已成为不可逆转的潮流与战略选择。大数据、云计算、人工智能、物联网等前沿科技正重塑着各行各业的面貌。面对激烈的市场竞争和不断变化的客户需求&#xff0c;中小企业作为国民经济的重要组成部分&#xff0c;数字化转型…

闪存知识科普-基本储存单元结构

概述&#xff1a; 闪存&#xff0c;即FlashMemory。其基本储存单元&#xff08;Memory Cell&#xff09;如下图所示。看起来有点像N沟道&#xff08;N-Channel&#xff09;MOS管&#xff0c;但比MOS管多一个悬浮闸&#xff08;Floating Gate&#xff09;。悬浮闸内可以储存电荷…

[江科大STM32] 第五集快速建立STM32工程模板——笔记

保存&#xff0c;进去选芯片型号&#xff0c;我们是F10C8T6 一个MD&#xff0c;还有所有.c.h 这里所有文件 这里所有文件

Elasticsearch:基础概念

一、什么是Elasticsearch Elasticsearch是基于 Apache Lucene 构建的分布式搜索和分析引擎、可扩展数据存储和矢量数据库。它针对生产规模工作负载的速度和相关性进行了优化。使用 Elasticsearch 可以近乎实时地搜索、索引、存储和分析各种形状和大小的数据。Elasticsearch 是…

安卓播放器TVbox或影视仓软件如何链接到xiaoya小雅超集?很详细的教程

前言 这里咱们说的安卓播放器软件指的是这个&#xff1a; 还有这个&#xff1a; 这两个软件只是个壳&#xff0c;你需要做的仅仅是把需要的内容填写到对应的位置即可。 开始这个教程之前&#xff0c;你需要先部署好小雅&#xff0c;如果没有部署小雅&#xff0c;这个教程基本…

Datawhale AI冬令营 动手学AI Agent

背景——什么是Agent 在人工智能领域&#xff0c;agent可以指一个能够感知环境并作出决策以实现特定目标的系统。比如&#xff0c;一个聊天机器人&#xff08;chatbot&#xff09;就是一个agent&#xff0c;它能够理解用户的输入并给出相应的回复。 学习目标 学会使用百宝箱平…

如何在IDEA一个窗口中导入多个项目

一般在IDEA窗口中想导入一个新项目&#xff0c;会提示我们在当前窗口还是新窗口。如果选新窗口&#xff0c;就会新打开一个窗口&#xff0c;此时新窗口里面只有新导入的项目。 而为了浏览起来更方便&#xff0c;需要实现在IDEA一个窗口中导入多个项目。具体步骤如下&#xff1…

面试经典问题 —— 链表之返回倒数第k个节点(经典的双指针问题)

目录 原题思路代码实现小结 原题 leetcode链接 &#xff1a; https://leetcode.cn/problems/kth-node-from-end-of-list-lcci/description/ 思路 这题就是典型的双指针母题 第一个指针先移动k步&#xff0c;然后第二个指针再从头开始&#xff0c;这个时候这两个指针同时移动&am…

VMware安装配置

1、官网下载VMware16 &#xff08;1&#xff09;进入VMware官网https://www.vmware.com/cn.html&#xff0c;之后点击下载里的Workstation Pro&#xff1a; &#xff08;2&#xff09;之后选择你要下载的VMware的版本&#xff0c;找到合适的下载&#xff0c;我这里以Windows系…

【文献精读笔记】Explainability for Large Language Models: A Survey (大语言模型的可解释性综述)(五)

****非斜体正文为原文献内容&#xff08;也包含笔者的补充&#xff09;&#xff0c;灰色块中是对文章细节的进一步详细解释&#xff01; 五、 解释评估&#xff08;Explanation Evaluation&#xff09; 在前面的章节中&#xff0c;我们介绍了不同的解释技术和它们的用途&#…

SQL 中的 EXISTS

我们先从 SQL 中最基础的 WHERE 子句开始。 比如下面这条 SQL 语句&#xff1a; 很显然&#xff0c;在执行这条 SQL 语句的时候&#xff0c;DBMS 会扫描 Student 表中的每一条记录&#xff0c;然后把符合 Sdept IS 这个条件的所有记录筛选出来&#xff0c;并放到结果集里面去…

C语言链表通关文牒0.5

之前排序创建链表那里用的是哨兵法&#xff0c;但是有局限性&#xff0c;这里介绍一个补充&#xff0c;不创建第一个空节点进行排序 NODE *create() {int val;NODE *head NULL; // 初始化头指针为NULLNODE *pC NULL; // 初始化指针&#xff0c;用于遍历链表while(1) {pri…

GAN对抗生成网络(一)——基本原理及数学推导

1 背景 GAN(Generative Adversarial Networks)对抗生成网络是一个很巧妙的模型&#xff0c;它可以用于文字、图像或视频的生成。 例如&#xff0c;以下就是GAN所生成的人脸图像。 2 算法思想 假如你是《古董局中局》的文物造假者&#xff08;Generator,生成器&#xff09;&a…

基于Python的携程旅游景点数据分析与可视化

基于Python的携程旅游景点数据分析与可视化 爬取景点、价格、开放状态、评论、热度、优惠政策等信息。 功能列表 指定城市爬取支持登录支持筛选支持评论爬取支持数据存在数据库支持生成Excel支持可视化 部分效果演示 爬取的旅游景点信息 生成Excel 指定城市爬取 可视化 部门…

SQL-leetcode-197. 上升的温度

197. 上升的温度 表&#xff1a; Weather ---------------------- | Column Name | Type | ---------------------- | id | int | | recordDate | date | | temperature | int | ---------------------- id 是该表具有唯一值的列。 没有具有相同 recordDate 的不同行。 该表包…

等待事件 ‘latch: row cache objects‘ 说明及解决方法

早上刚来的时候&#xff0c;收到zabbix 数据库连接数增长的告警&#xff0c;同时应用负责人也说查询很慢、很卡 查看该时间段 最多的等待事件 SELECT event,COUNT(1) num FROM V$ACTIVE_SESSION_HISTORY A WHERE A.SAMPLE_TIME BETWEEN TO_DATE(2025-01-02 09:00:00, YYYY-M…

HAL 库------中断相关函数

HAL_SuspendTick();是对SysTick中CTRL寄存器中TICKINT位清0 HAL_ResumeTick(); 刚好与上面函数相反&#xff0c;对SysTick中CTRL寄存器中TICKINT位置1&#xff0c;恢复stick中断。

IDEA开发Java应用的初始化设置

一、插件安装 如下图所示&#xff1a; 1、Alibaba Java Coding Guidelines 2.1.1 阿里开发者规范&#xff0c;可以帮忙本地自动扫描出不符合开发者规范的代码&#xff0c;甚至是代码漏洞提示。 右击项目&#xff0c;选择《编码规约扫描》&#xff0c;可以进行本地代码规范扫…

QT-------------多线程

实现思路 QThread 类简介&#xff1a; QThread 是 Qt 中用于多线程编程的基础类。可以通过继承 QThread 并重写 run() 方法来创建自定义的线程逻辑。新线程的执行从 run() 开始&#xff0c;调用 start() 方法启动线程。 掷骰子的多线程应用程序&#xff1a; 创建一个 DiceThre…