周记二

作者: Cathy_cheng | 来源:发表于2017-03-20 20:15 被阅读0次

周一:今天学了继承和多态,继承有public继承、protected继承、private继承,多态和虚函数一对,抽象类和纯虚函数一对,还有友元。

周二:今天学到一饿特别酷的c语法:ch = "0123456789ABCDEF"[tmp];ch是一个char型的变量,tmp是一个int型的变量,先初始化ch的范围,根据tmp的值确定ch的值。

今天学习了运算符的重载,可以使除“. , :: , * , -> , ?=”5个运算符之外的运算符进行重载。对于模版,个人认为是对STL的初步了解,若是能够熟悉模版,就能理解STL的调用。顺序容器和关联容器都会涉及迭代器,for (vector::const_iterator p = c.begin(); p < c.end(); p++)  or    for(int i = 0; i < c->size(); i++) 两种循环进行遍历

周三:今天内容很多,没时间写小结,作业还没做完………

周四:今天学习了mysql,首先要说的是安装mysql:sudo apt-get install mysql-server。在安装过程中会有安装错误,需要卸载重装,此刻需要sudo apt-get autoremove --purge mysql-server-5.5,然后dpkg -l |grep ^rc|awk '{print $2}' |sudo xargs dpkg -P,此操作是为了清除所有残留数据。

总结一下今天学到的内容:

1、 mysql -u root -p

2、显示所有数据库:show databases;

3、显示默认数据库中所有表:show tables;

4、退出mysql程序:\q;

5、create database if not exists student;

6、show databases like 'stu%';如果关键字stu在中间,使'%stu%'的形式来查找

7、use student;

8、 drop database if exists student;

-------------------------------------

9、create table class(id int ,name varchar(11),..

10、show columns from student; ==  desc student;显示表格初始化信息

11、增加列:alter table student add age int;

       修改列:alter table student modify age int not null;

        删除列:alter table student drop weight;       似14

12、insert into student(id, name,age)value(1,"aa",10);

       insert student set id =9;

13、查询表格的详细信息:

                     select * from student where id=1;

                   select age, name from student;

                  select * from student order by id desc(降序)/asc(升序);

                 select name from student group by name;(统计数量,重复的不算)

多表查询********* select t1.name as t1name, t1.age as t1age, t2.name as t2name, t2.age as t2age from test01_01 as t1, test01_03 as t2 where t1.name = t2.name;

14、 修改数据:update student set name="tom" where id=2;

15、delete from student where id=9;

周五:

今天学习了mysql的一些函数调用,并且自己写了一个注册登录的小demo,今天老师已经布置了下周项目的要求,分析了一下,此刻的我感觉不简单。但是从以往经验来看,到下一周什么都会over了……

相关文章

  • 周记·二

    周记缺二

  • 八月阅读记(8.1-8.26)50本

    八月阅读记 八月第二周阅读记 八月第三周阅读记 八月第四周阅读记

  • 2019年第9周2.25-3.3

    108训练营三班二组一善馋师 2019年第9周·记(周记并兼职月记) 又到了周记的deadline了,每...

  • 周记|第二周周记

    本周周记: 1*洗澡。 2*检查身体。 3*家里换了宽带,路由器。 4*制订了去北京,天津游玩的规划,订了票和旅店...

  • 周记001(20181001-20181007)

    0.关于周记 周记二字既熟悉又陌生,熟悉的是,周记这件事就是读书到工作老师或者领导要求的记录或者总结,而且也...

  • 2018-12-16

    帅妈的自律自由之路 ——第二次周记(2018.12.10-2018.12.16) 这是加入周记闯关游戏的...

  • 8月份日记

    周记 8月份第二周 1.2019年,好几年了,终于要把日记,周记,月记,年计捡起来重新续能了。“”断舍离“”实践起...

  • 周记二

    自己所有经历的事情,或者是得到来的有用的任何,不需要信奉成真理。对待他的态度应该谦卑些,只可能对你适用,但对其他人...

  • 周记二

    说好的每周写周记,第二篇周记竟然已经在五周之后。 时间过的好快,竟然来伦敦一个多月了。 时间过的好慢,竟然来伦敦才...

  • 周记二

    这篇周记本应该在昨天完成,然而昨天家里来了客人,没法独立写作,因此留到了今天。但是想想看,在我马上要踏入二十一岁的...

网友评论

      本文标题:周记二

      本文链接:https://www.haomeiwen.com/subject/jeminttx.html