c++ 小片段】的更多相关文章

看了 30 Seconds CSS,有了许多收获,所以写下了这篇文章,算是收藏一些代码小片段,留作后用. 一.手写 Loading 动画 (1)弹性加载动画 CSS 代码如下: .bounce-loading { width: 20rem; height: 10rem; background-color:aqua; display: flex; justify-content: center; align-items: center; } .bounce-loading > div { widt…
1: 概述 thymeleaf是一个跟 Velocity.FreeMarker 类似的模板引擎,和以前学的jsp相近,但性能上无疑是比jsp好. 参考文档官方文档:https://www.thymeleaf.org/doc/tutorials/2.1/usingthymeleaf.html#what-is-thymeleaf 本文环境:win10,jdk1.8, idea2018, maven3.5.4, springboot1.5.19, 2:引入依赖 pom.xml 中加入thymeleaf…
ios7新增加的icon尺寸: 76 x 76:Size for iPad 2 and iPad mini (standard resolution) 120 x 120 :Size for iPhone  and iPod touch (high resolution) 152 x 152: Size for iPad and iPad mini (high resolution) 参考: http://blog.manbolo.com/2013/08/15/new-metrics-for-i…
public static String listToString(List<String> stringList){ if (stringList==null) { return null; } StringBuilder result=new StringBuilder(); result.append("("); boolean flag=false; for (String string : stringList) { if (flag) { result.appe…
void test_string() { string sen = "Connection will be closed if there is no " "read/write operations during the last 'idle_timeout_s'"; cout << sen<< endl; }…
一:先看看springboot默认的错误处理机制 springboot默认会判断是否是浏览器(http请求头Accept是否含有 text/html)来选择返回html错误页面或json错误信息 原因在于BasicErrorController 控制器中的这两个映射 errorHtml响应来自浏览器的请求,而error响应来自其他客户端的请求: 在errorHtml中最后两句,如果没有自定义的页面,就会使用系统默认的错误解析视图 二:那么如何定制自己的错误页面呢? 由BasicErrorCont…
1.前面变量值的改变不影响后面变量的调用 index=1 index,a=2,index+1 print(a,index) #2 2 2.类的继承(子类实例如何调用父类同名方法) class a: def show(self): print('a') class b(a): def show(self): print('b') obj=b() obj.show() print(obj) obj.__class__=a print(obj) obj.show() 输出: b <__main__.b…
1.获取对象 obj 的所有属性(自有属性和继承属性),保存到数组 lst 中 //获取对象obj的所有属性(自有属性和继承属性),保存到数组lst 中 var lst = []; function getAllAttrs(obj){ var arr = Object.getOwnPropertyNames(obj); for(r in arr){ lst.push(arr[r]); } if(obj.__proto__ !== null){ obj = obj.__proto__; getAl…
1. 使用jQuery来切换样式表 //找出你希望切换的媒体类型(media-type),然后把href设置成新的样式表. $(‘link[media="screen"]‘).attr(‘href’, ’Alternative.css’); 2. 设置IE特有的功能 if ($.browser.msie) { // Internet Explorer其实不那么好用 } 3. 验证某个元素是否为空 if ($(‘#keks’).html().trim()) { //什么都没有找到; }…
Kaxaml 一款轻量级的Xaml代码编辑器,提供了可视的效果可以看到修改代码后的实时效果图.个人习惯于用它测试系统默认控件的行为和布局,小片段的xaml也可以拿到这个工具上测试效果.这款工具还提供了代码提示,颜色提取器和代码格式化等功能. Inkscape  这个工具是用来绘制矢量图的.WPF方面最有用的功能是把svg文件转换为xaml,具体操作为选择文件,然后另存为xaml就可以…