摘要:
先来一个返回指针的测试,结果跟想象一样 再试试直接返回值,这下的输出和想象中不一样了 为什么呢,再试试 go 语言中map,slice都是指针类型,以值的形式返回struct的时候只是把map对应的指针拷贝了 阅读全文
摘要:
测试代码```#include struct AA{ char b; char b1; int b3; char b2;};class A{public: A() { b = 'a'; } A(char c){ b = c; printf("build A:%c\n",c); } char b;... 阅读全文
摘要:
``` php//页面本身网址"http://".$_SERVER["HTTP_HOST"].preg_replace("/[^\/]+$/","",$_SERVER["PHP_SELF"])``` 阅读全文
摘要:
1. django的hello world2. 其它项目中使用django的orm# django 学习django主要是因为最近对python产生了兴趣,听说它是胶水语言,想试试什么叫胶水。 在这里django的安装就不说了,我的python版本是2.7## 1. django的hello wor... 阅读全文
摘要:
### source.list```bash#阿里云kali源deb http://mirrors.aliyun.com/kali kali main non-free contribdeb-src http://mirrors.aliyun.com/kali kali main non-free ... 阅读全文
摘要:
## apache2+php+mysql``` bashsudo apt-get install apache2sudo apt-get install libapache2-mod-php5 php5sudo apt-get install curl libcurl3 libcurl3-dev p... 阅读全文
摘要:
1.360安全卫士 http://www.360.cn/ 装好系统后用它来卸载预装软件,杀毒,关闭开机启动项和清理垃圾 2.QQ http://im.qq.com/download/ 手机和电脑通信 3.git http://git-scm.com/download/ 项目都在里边 4.sublime text http://www.sublimetext.com/ 插件管理... 阅读全文
摘要:
### 一,安装apache2```bashsudo apt-get install apache2```### 二.配置cgi-bin```bashsudo chmod 777 /var/www/htmlsudo vim /etc/apache2/sites-enabled/000-default... 阅读全文