码迷,mamicode.com
首页 >  
搜索关键字:sublime test    ( 38047个结果
Java观察者模式实例
在观察者模式中,包括以下四个角色: 主题(被观察者)(Subject):主题是一个接口,该接口规定了具体主题需要实现的方法,比如,添加、删除观察者以及通知观察者更新数据的方法。 观察者(Observer):观察者是一个接口,该接口规定了具体观察者用来更新数据的方法。 具体主题(ConcreteSub ...
分类:编程语言   时间:2021-06-02 20:20:11    阅读次数:0
webservice 从入门到精通(二)helloworld(Webservice + cxf)
1 官网下jar包,搭工程(略) http://cxf.apache.org/ 2 代码 package com.mangoubiubiu.cxf.test; import javax.jws.WebService; @WebService //对外发布服务 public interface Hel ...
分类:Web程序   时间:2021-06-02 19:21:52    阅读次数:0
【Python】unittest测试框架中setup,teardown与setupclass,teardownclass的区别
每次执行测试用例的时候都会去执行一次setUp 和tearDown import unittest class Test(unittest.TestCase): def setUp(self): print("start! ") def test01(self): print("执行测试用例01") ...
分类:编程语言   时间:2021-06-02 18:59:47    阅读次数:0
(C#)泛型约束
1.new() 约束表示T类型只能接受一个无参数构造函数的new T()。 2.struct值类型约束。 3.class引用类型约束。 4.自定义类型约束。 值类型:struct/int/double/bool/枚举。 引用类型:数组/类/接口/委托/object/字符串。 不论有多少约束,new( ...
分类:Windows程序   时间:2021-06-02 18:43:30    阅读次数:0
flutter项目目录介绍
1 flutter项目目录介绍 android 安卓平台的的相关代理 build 编译后的 ios ios 平台的的相关代理 lib 自己写代码的目录 包好自己的代码 资源 test 放测试文件的 pubspec.yaml 我们项目的配置文件 包含有项目名称、项目描述、第三方资源依赖 2 lib目录 ...
分类:其他好文   时间:2021-06-02 18:12:29    阅读次数:0
范围for循环
//普通for循环 void test(){ int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; for (int i = 0; i < sizeof(arr) / sizeof(arr[0]); ++i){ cout << arr[i] << " "; } cou ...
分类:其他好文   时间:2021-06-02 14:53:43    阅读次数:0
How to Analyze SQL Execution Plan Graphical Components
Table of contents SQL Server Execution Plans Overview SQL Server Execution Plans Types How to Analyze SQL Execution Plan Graphical Components SQL Serv ...
分类:数据库   时间:2021-06-02 14:18:20    阅读次数:0
mysql之 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 11
问题描述:启动MySQL后,出现连接不上,报 [ERROR] InnoDB: Unable to lock ./ibdata1, error: 11[root@mysql01 ~]# service mysql startStarting MySQL [ OK ][root@mysql01 ~]# ...
分类:数据库   时间:2021-06-02 13:23:04    阅读次数:0
java 集合查找
List<Obj> test= objList.stream().filter(s -> s.getLicence() != null && s.getLicence().equals(obj.getLicence())).collect(Collectors.<Obj>toList()); ...
分类:编程语言   时间:2021-06-02 13:19:18    阅读次数:0
【MySQL】MySQL 8.0统计连续登录天数
如何在MySQL下查询连续的时间内登录的次数? 原文链接:http://www.oschina.net/question/573517_118821 首先建表,填充测试数据: CREATE TABLE `tmysql_test_lianxu_3` ( `id` int(11) NOT NULL AU ...
分类:数据库   时间:2021-06-02 12:47:05    阅读次数:0
38047条   上一页 1 ... 10 11 12 13 14 ... 3805 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!