码迷,mamicode.com
首页 >  
搜索关键字:oid    ( 16201个结果
Queue<T>类中的一些方法使用
using System; using System.Collections.Generic; using System.Linq; namespace MyApplication { class Program { static void Main(string[] args) { // 实例化Q ...
分类:其他好文   时间:2020-03-26 21:57:37    阅读次数:100
Android App常规测试内容
...
分类:移动开发   时间:2020-03-26 19:35:01    阅读次数:75
内部类
如何创建内部类的对象 package com.aff.inter; import com.aff.inter.Person.Dog; /* 类的第五个成员:内部类 1.类的内部定义的类 2.内部类的分类:成员内部类(声明在类内部且方法外的 )vs 局部内部类(声明在类的方法里) 3.成员内部类: 1 ...
分类:其他好文   时间:2020-03-26 19:15:13    阅读次数:69
接口应用-代理模式
代理模式:这个为静态代理模式 package com.aff.inter; public class TestProxy { public static void main(String[] args) { Object obj = new ProxyObject(); obj.action(); ...
分类:其他好文   时间:2020-03-26 17:53:40    阅读次数:65
ionic4 build error Could not find plugin “proposal-numeric-separator”
在ionic4的环境下,执行ionic build发现如下错误: Could not find plugin “proposal-numeric-separator” 解决方案: https://stackoverflow.com/questions/60787334/ionic-android-b ...
分类:其他好文   时间:2020-03-26 16:39:47    阅读次数:401
winfrom窗体按下Enter触发事件和Tab切换顺序
1,按下Enter触发事件 private void txt_UserId_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { //或者其他事件 this.btn_Login_Click(null, null ...
分类:Windows程序   时间:2020-03-26 12:25:59    阅读次数:102
从零开始实现ASP.NET Core MVC的插件式开发(一) - 使用ApplicationPart动态加载控制器和视图
标题:从零开始实现ASP.NET Core MVC的插件式开发(一) - 使用Application Part动态加载控制器和视图作者:Lamond Lu地址:https://www.cnblogs.com/lwqlun/p/11137788.html源代码:https://github.com/l ...
分类:移动开发   时间:2020-03-26 12:07:07    阅读次数:98
ASP.NET Core 3.1 中的Startup类
Startup 类配置服务和应用的请求管道。 Startup 类 ASP.NET Core 应用使用 Startup 类,按照约定命名为 Startup。 Startup 类: 可选择性地包括 ConfigureServices 方法以配置应用的服务 。 服务是一个提供应用功能的可重用组件。 在 C ...
分类:Web程序   时间:2020-03-26 01:32:15    阅读次数:184
设计模式——装饰模式
被装饰对象 调用 装饰对象的同一个接口方法,实现被装饰对象的方法//定义共用接口public interface ILog { public void log(String message);}public class UserLog implements ILog{ @Override publi... ...
分类:其他好文   时间:2020-03-25 19:41:39    阅读次数:69
设计模式——工厂模式
简单工厂模式/* 简单工厂模式:完全冗余生产,容易混乱 通过一个工厂内实现所有的部件发送消息 */public class FactorySimple { //简单工厂模式:内部无该具体类的属性 public void sendMSG(String type,String message) { if... ...
分类:其他好文   时间:2020-03-25 19:28:46    阅读次数:95
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!