常规批TX CSIG面经以及许愿贴
TX - CSIG
May 11
个人介绍
项目
-
自由陈述
Linux Cmd
-
查看文件大小:
ls -l (filename)
中间那个很大的字段就是大小(B)
-
查看端口
netstat -p
-
对日志中重复的ip次数进行统计
HTTP 和 HTTPS
略
进程和线程
略
Linux 文件存储的结构
略
动态库和静态库
-
静态库被编译后和其他程序整合在一个可执行文件elf中,占内存已经一旦更新就要重新编译
-
动态库只有在运行时才被linked (The shared objects are not included into the executable component but are tied to the execution),只占一份“内存”
static的作用
-
A static variable inside a function keeps its value between invocations.
-
A static global variable or a function is "seen" only in the file it's declared in
-
access control
-
static的变量在其他文件是不可见的,如果需要可见则用extern
-
-
In C++, however, static is also used to define class attributes (shared between all objects of the same class) and methods.
SQL -- 分页查询
前端 -- 父子组件
...拉倒吧
手撕代码
字符串处理
May 15
死盘项目
-
工业界是怎么实现的
-
有没有漏洞和改进
-
ROOT CA为什么可靠:)