摘要: Triangle LOVE Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 2271 Accepted Submission(s): 946 P 阅读全文
posted @ 2017-06-01 14:12 yxysuanfa 阅读(173) 评论(0) 推荐(0) 编辑
摘要: AOP就是切面编程的一个思想,当然完毕一项编码任务,发现有些东西是反复工作,这时就能够考虑使用AOP编程。把一些共性的东西交给它来完毕,我们仅仅关心业务逻辑的东西,最精彩用的场景有两种: 一,控制数据库事务。比方我们有个业务逻辑须要提交数据,也要更改数据。这就涉及到数据提交和回滚,所以把控制数据提交 阅读全文
posted @ 2017-06-01 13:17 yxysuanfa 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 请环境变量设置 注意 "D:\soft\nodejs\"这个是笔者自己安装在电脑上的node js文件夹,请改动成自己的 假设安装的express是4.X就要安装 express-generator 不然 express文件夹是没有bin文件文件夹的。 当中最基本的问题在于C:\Users\xxxx 阅读全文
posted @ 2017-06-01 12:26 yxysuanfa 阅读(267) 评论(0) 推荐(0) 编辑
摘要: list是一个ArrayList的对象,哪个选项的代码填到//todo delete处。能够在Iterator遍历的过程中正确并安全的删除一个list中保存的对象?() Iterator it = list.iterator(); int index = 0; while (it.hasNext() 阅读全文
posted @ 2017-06-01 11:18 yxysuanfa 阅读(9913) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> static void display(int i, int *ptr); int main(void) { int x = 5; int *xptr = &x; printf("In main():\n"); printf(" x is %d and is s 阅读全文
posted @ 2017-06-01 09:44 yxysuanfa 阅读(198) 评论(0) 推荐(0) 编辑
摘要: #import "ViewController.h" @interface ViewController ()<UITableViewDataSource,UITableViewDelegate,UIGestureRecognizerDelegate> @end @implementation Vi 阅读全文
posted @ 2017-06-01 08:43 yxysuanfa 阅读(614) 评论(0) 推荐(0) 编辑