自定义Test类,给出如下的测试程序: 运行结果如下: 此时栈中没有任何元素,却调用了10次构造函数和10次析构函数。 这是因为我们使用了原生数组作为存储空间,在创建栈的时候,当然会调用泛指类型T的构造函数。 我们需要另一种存储形式,来避免这种缺陷。 添加LinkStack.h文件: 测试程序如下: ...
分类:
其他好文 时间:
2018-09-16 21:08:03
阅读次数:
200
mac系统 pip3 install scrapy 失败 No local packages or working download links found for incremental>=16.10.1 使用pip3 install scrapy命令之后,会出现如下问题: Collecting ...
分类:
其他好文 时间:
2018-09-16 20:55:38
阅读次数:
205
[toc] requests html 是基于现有的框架 PyQuery、Requests、lxml、beautifulsoup4等库进行了二次封装,作者将Requests设计的简单强大的优点带到了该项目中。 GiHub项目地址: "https://github.com/kennethreitz/r ...
分类:
编程语言 时间:
2018-09-10 00:58:41
阅读次数:
352
Eclipse安装插件的几种方法(eclipse安装SVN插件) 在这里啰嗦一句,其实更新的版本mar2更好用。但是由于在低电压版的本本上,mar2跑不起来,经常假死,kepler可以很流畅。 so,如果为了携带了轻便低电压版CPU的本本,mar2跑不起来,就用kepler吧。 以Eclipse(K ...
分类:
系统相关 时间:
2018-09-08 15:19:00
阅读次数:
596
Some useful links + https://hakeemit.blogspot.com/2018/04/gradle project sync failed basic.html + https://stackoverflow.com/questions/15324493/how do ...
分类:
移动开发 时间:
2018-09-07 20:12:42
阅读次数:
213
什么是Universal Links? 在iOS9之前,对于从各种从浏览器、Safari中唤醒APP的需求,我们通常只能使用scheme。但是这种方式需要提前判断系统中是否安装了能够响应此scheme的app,并且这种方式在微信中是被禁用了的。 Universal Links是iOS9推出的一项功能 ...
分类:
移动开发 时间:
2018-09-04 11:45:42
阅读次数:
222
from django.contrib import admin from .models import Article,Category from datetime import datetime # Register your models here. @admin.register(Artic... ...
分类:
其他好文 时间:
2018-09-03 02:25:46
阅读次数:
192
旧版本获取节点1、获取body console.log(document.body); 2、获取img console.log(document.images); 3、获取a标签 console.log(document.links); 4、获取含有name属性的a标签 console.log(do ...
分类:
Web程序 时间:
2018-09-03 02:12:05
阅读次数:
168
上节回顾: 1 反向解析(reverse) 2 modelForm 》添加和编辑 添加: class BookModelForm(): class Meta: model=Book fields="__all__" def add(reqeust): if GET: form=BookModelFo ...
分类:
其他好文 时间:
2018-09-02 15:05:35
阅读次数:
1070