码迷,mamicode.com
首页 >  
搜索关键字:code    ( 108667个结果
SQL初级第二课
随着我们数据库越来越复杂 我们要掌握的姿势也要也来越多....首先建立个表create table shop(code int primary key identity (1,1),name varchar(50) not null,price int not null,brand varchar(...
分类:数据库   时间:2015-04-20 16:17:47    阅读次数:176
linker command failed with exit code 1 (use -v to see invocation)意思以及解决
这句话的意思大概是链接器命令失败退出代码. 出现这种情况很可能是,项目中引入了多个相同文件。对于这个错误需要耐心去检查....
分类:其他好文   时间:2015-04-20 14:56:47    阅读次数:123
php curl getinfo
";print_r(curl_getinfo($ch));echo "";/*Array( [url] => http://www.baidu.com/ CURLINFO_EFFECTIVE_URL 最后一个有效的url地址 [http_code] => 0 CURLINFO_...
分类:Web程序   时间:2015-04-20 14:45:56    阅读次数:139
python_code_420
1.python 语法对 空格,缩进有严格要求2.file objects contain a special pair of built-in methods:__enter__()and__exit__() such as: with open("text.txt", "w") as v: .....
分类:编程语言   时间:2015-04-20 14:45:23    阅读次数:181
DCEVM,Java类动态替换初级实验说明
概述 DCEVM,全称Dynamic Code Evolution,一个JVM补丁程序,其目的就是实现运行时的类替换。最新的项目地址为:https://dcevm.github.io/ 下面将从安装、验证、搭建测试环境、测试等几个方面进行简要说明。 安装 首先登录网址:https://dcevm.github.io/,站点中明确给出了Binaries(二进制程序)的下载链接,该项目分为两个...
分类:编程语言   时间:2015-04-20 13:15:36    阅读次数:137
(转)Eclipse/Myeclipse 注释注释模板
Window -->preferences --> Java --> Code Style --> Code Templates --> Comments --> types --> Edit标签翻译如下:/**** 项目名称:${project_name} * 类名称:${type_name}* ...
分类:系统相关   时间:2015-04-20 12:52:53    阅读次数:192
php简单实现spider 抓URL
0x01spider抓取URL 采用的是file_get_contents()/fopen()函数,利用正则匹配的方式(貌似最简单方式了,记录下后续添加)0x02usage:php spider.php www.baidu.com 结果保存在www.baidu.com文件中Code:--------...
分类:Web程序   时间:2015-04-20 12:49:46    阅读次数:139
Eclipse - 修改默认user和添加类的创建日期
1、找到eclipse.ini文件2、在文件中找到 -vmargs -Duser.name=xxxxxxxx3、修改xxxxxxxx为你的名字4、eclipse中:Window -> Preference -> Java -> Code Style -> Code Templates 选择右...
分类:系统相关   时间:2015-04-20 12:47:45    阅读次数:165
linker command failed with exit code 1)
一般是导入第三方库的时候出现的错误1,导入文件缺失,包括缺失XXXX.a文件,或者系统框架文件2, 文件重复导入,特别是ViewController,如果导入的同名字的ViewController有两个,那么在alloc的时候就会报这个错误,因为系统不知道要alloc哪一个, 我今天遇到这个问题就....
分类:其他好文   时间:2015-04-20 12:44:03    阅读次数:116
数据库 基本用法语句
use [0325] --使用0325数据库 create table student --创建表格 ( code int primary key identity(1,1) not null, --列 name varchar(50)not null, --列 se...
分类:数据库   时间:2015-04-20 12:43:16    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!