01 2021 档案

摘要:http -V (/usr/local/httpd/bin/apachectl -V) 阅读全文
posted @ 2021-01-31 18:58 不知起什么名字 阅读(1428) 评论(0) 推荐(0)
摘要:在C++中,静态成员变量在类中仅仅是声明,没有定义,所以要在类的外面定义,实际上是给静态成员变量分配内存。 之所以编译以上代码会出现“无法解析的外部符号 ...::visit..”错误。这是因为静态成员变量visit只是声明还未定义,也就是还没有分配内存,显然是不可以访问的。 static void 阅读全文
posted @ 2021-01-30 16:39 不知起什么名字 阅读(3018) 评论(0) 推荐(0)
摘要:身为菜鸡,不懂像下图中这样初始化为什么会出问题,等了解透彻后再详细写 解决方法: BinaryTreeNode(const T& theElement):element(theElement){.......} 阅读全文
posted @ 2021-01-30 15:18 不知起什么名字 阅读(276) 评论(0) 推荐(0)
摘要:1.创建用户并授权 创建用户user,密码为:mypassword,其可以本地登录,并可以访问任何数据库 grant all privileges on *.* to 'user'@'localhost' identified by 'mypassword'; 本地授权 创建用户user,密码为:m 阅读全文
posted @ 2021-01-20 01:46 不知起什么名字 阅读(324) 评论(0) 推荐(0)
摘要:1.将httpd-vhosts.conf中的相关配置 <VirtualHost *:8088> DocumentRoot '/test/download DirectoryIndex index.html index.php ErrorLog "logs/localhost-error.log" S 阅读全文
posted @ 2021-01-13 17:45 不知起什么名字 阅读(180) 评论(0) 推荐(0)