C++ Primer Plus 第一章 预备知识 知识点梳理 本章主要讲述了C++的由来,讨论了面向过程语言与面向对象语言的区别,介绍了ANSI/ISO制定的C++标准,阐述了在Windows.Mac.Linux以及Unix上创建.编译C++程序的技巧和方法. 重点知识回顾 C++是为了解决编写大型程序时类似C语言结构化编程的理念无法更好的应对挑战的问题,其引入了面向对象(OOP)的新方法,与C语言强调算法的过程性编程不同,面向对象强调的是数据,其理念是设计与问题的本质特性相对应的数据格式. C…
一.DBA的工作 1.初级:mysql基础安装.搭建 2.中级:数据库管理员DBA 1)用户管理 1.用户的权限2.用户可以操作的库或者表3.用户名和来源的主机4.用户的密码grant all on *.* to root@'%' identified by '123';grant all on *.* to root@'172.16.1.7' identified by '123';grant all on *.* to root@'172.16.1.%' identified by '12…
练习1-1 #include <stdio.h> int main() { int a; a = 15; int b; b = 37; int c; c = a - b; printf("%d-%d的结果是%d.", a, b, c); return 0; } 练习1-2 #include <stdio.h> int main() { printf("天\n地\n人\n"); ; } 练习1-3 #include <stdio.h>…