摘要: 题目:文件属性为-rw-r--r-- 对应权限为644,如何使用命令获取权限对应的数字?? 举例如下: [linuxidc@localhost ~]$ ll -l-rw-r--r-- 1 linuxidc wheel 38 Oct 12 16:29 1.txt 使用stat命令可以查看[linuxi 阅读全文
posted @ 2018-11-07 17:51 anobscureretreat 阅读(365) 评论(0) 推荐(0)
摘要: 符号说明 符号说明 ⌘ command ⌃ control ⌥ option ⇧ shift ↩ enter ⌫ delete 打开/关闭/前往 快捷键功能 ⌘⇧N 打开一个新的sublime窗口 ⌘N 新建文件 ⌘⇧W 关闭sublime,关闭所有文件 ⌘W 关闭当前文件 ⌘P 跳转、前往文件、前 阅读全文
posted @ 2018-11-07 13:18 anobscureretreat 阅读(310) 评论(0) 推荐(0)
摘要: #include using namespace std; class Parent { public: Parent():a(100),b(200),c(300) { cout << "parent 构造。。。\n"; } ~Parent() { cout << "Parent 析构。。。\n"; } ... 阅读全文
posted @ 2018-11-07 10:16 anobscureretreat 阅读(188) 评论(0) 推荐(0)