上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 255 下一页
摘要: 1.简单介绍 ECMAScript 6.0(以下简称ES6)是JavaScript语言的下一代标准,已经在2015年6月正式公布了。它的目标。是使得JavaScript语言能够用来编写复杂的大型应用程序,成为企业级开发语言。 JavaScript的创造者Netscape公司,之后将JavaScrip 阅读全文
posted @ 2018-01-23 13:10 zhchoutai 阅读(234) 评论(0) 推荐(0)
摘要: 列表的一些经常使用操作符 比較操作符逻辑操作符连接操作符反复操作符成员关系操作符 +表示两个连接。*表示复制。 list中“+”两边的类型必须一致。 演示样例: 注意:加入元素能够用append()或者insert() in和not 查看元素在不在列表中的方法:in和not in;查看列表中的列表的 阅读全文
posted @ 2018-01-23 12:36 zhchoutai 阅读(226) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; //基类。 class Parent { public: virtual void Printf()=0; }; class Child1 : public Parent { public: void Printf() 阅读全文
posted @ 2018-01-23 11:25 zhchoutai 阅读(114) 评论(0) 推荐(0)
摘要: (一)直接调用方法(不推荐使用) 1)Action类: private String savePath; public String getSavePath() { return savePath; } public void setSavePath(String savePath) { this. 阅读全文
posted @ 2018-01-23 10:54 zhchoutai 阅读(109) 评论(0) 推荐(0)
摘要: 前言 在我上一篇讲Retrofit+RxJava在MVP模式中优雅地处理异常(一)中,发现非常多网友发邮箱给我表示期待我的下一篇文章,正好趁着清明假期。我就写写平时我在使用RxJava+Retrofit怎么去灵活地处理一些场景。比方说一些比較常见的场景: 网络请求过程中token的处理 网络请求数据 阅读全文
posted @ 2018-01-23 09:31 zhchoutai 阅读(327) 评论(0) 推荐(0)
摘要: 刮刮乐jquery插件:wScratchPad 完整项目资源下载:点击打开链接 运用wScratchPad插件非常快弄出刮刮乐的效果,代码例如以下: <!DOCTYPE html> <html> <head> <meta CHARSET="UTF-8"> <title>刮刮乐</title> <sc 阅读全文
posted @ 2018-01-23 08:15 zhchoutai 阅读(172) 评论(0) 推荐(0)
摘要: Description FlyBrother is a superman, therefore he is always busy saving the world. To graduate from NUDT is boring but necessary for him. Typically W 阅读全文
posted @ 2018-01-22 21:26 zhchoutai 阅读(127) 评论(0) 推荐(0)
摘要: 1. 加入/改动wp-config.php文件 <?php /** * WordPress 基础配置文件。 * * 本文件包括下面配置选项: MySQL 设置、数据库表名前缀、 * 密匙、WordPress 语言设定以及 ABSPATH。如需很多其它信息,请訪问 * {@link http://co 阅读全文
posted @ 2018-01-22 20:20 zhchoutai 阅读(166) 评论(0) 推荐(0)
摘要: 上文中提到的Ajax的异步更新。主要使用XMLHttpRequest对象来实现的,XMLHttpRequest对象能够在不向server提交整个页面的情况下,实现局部更新网页。当页面所有载入完毕后。client通过该对象向server请求数据,server端接受数据并处理后,向client反馈数据。 阅读全文
posted @ 2018-01-22 19:39 zhchoutai 阅读(143) 评论(0) 推荐(0)
摘要: #include<stdio.h> #include<string.h> #include<algorithm> using namespace std; const int N=200000+5; const int inf=1<<24; int dp[N][2],a[N]; char s[2*N 阅读全文
posted @ 2018-01-22 18:39 zhchoutai 阅读(126) 评论(0) 推荐(0)
上一页 1 ··· 92 93 94 95 96 97 98 99 100 ··· 255 下一页