1、what is the MAIN benefit of designing tests early in the life cycle? 2、What is risk-based testing? 3、What is the KEY difference between preventative ...
分类:
其他好文 时间:
2018-05-19 14:49:35
阅读次数:
158
问题描述: Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Note: Do not modify the linked list. 我的思路: 在Link ...
分类:
其他好文 时间:
2018-05-17 11:52:54
阅读次数:
134
问题描述: Given a linked list, determine if it has a cycle in it. 我的思路: 用一个指针指向链表头部,另一个指针在链表上移动。若两个指针指向地址相等,则存在环。 然后我没过OJ:) 因为循环链表的尾部并不一定链接头部,可能链接任意节点,此时会 ...
分类:
其他好文 时间:
2018-05-17 11:48:12
阅读次数:
123
circular dependencies in projects' graph ! Projects in cycle are:ProjectImp(Name:FrameWork.Entity,PlatformId:'.NETFramework,Version=v4.6') ProjectlImp ...
最近学习recyclerview 遇到的问题 1.宽度不适配 正确写法 错误写法 2 只显示一行 itemView中父 view 写成wrap_content ; ...
分类:
移动开发 时间:
2018-05-16 15:26:48
阅读次数:
178
一、redis介绍 Redis是一个开源,高级的键值存储和一个适用的解决方案,用于构建高性能,可扩展的Web应用程序。 Redis官方网网站是:http://www.redis.io/ Redis中文资料网站:https://redis.io/topics/problems 1、redis特点: ① ...
分类:
系统相关 时间:
2018-05-15 17:34:01
阅读次数:
237
是因为maven中没有对该plugin{Eclipse_folder}/plugins/org.eclipse.m2e.lifecyclemapping.defaults_1.8.2.20171007-0217.jar解压lifecycle-mapping-metadata.xml到workspac... ...
分类:
其他好文 时间:
2018-05-12 15:11:31
阅读次数:
2947
1、有些OC对象不能使用 "__weak" 修饰,因为有些类自己重写了retain和release方法,不支持__weak,例如NSPort类和它的子类。 2、在dealloc中不能使用 “__weak __typeof(self)weak_self = self;”,否则程序会崩溃。 ...
分类:
其他好文 时间:
2018-05-09 01:24:03
阅读次数:
460
salary = input("your salary =")_salary = int(salary)list = []for i in range(10): a = "1、iphone6s need 5800" b = "2、mac book need 9000" c = "3、coffee n ...
分类:
其他好文 时间:
2018-05-09 01:19:32
阅读次数:
142
基本组件: xtype Class 描述 button Ext.Button 按钮 splitbutton Ext.SplitButton 带下拉菜单的按钮 cycle Ext.CycleButton 带下拉选项菜单的按钮 buttongroup Ext.ButtonGroup 编组按钮(Since ...
分类:
Web程序 时间:
2018-05-05 10:22:01
阅读次数:
205