摘要:
线程安全 线程安全概念 代码示例说明1 不加synchronized关键字修饰run()方法的代码 package org.xujin.multithread; public class MyThread extends Thread { private int count = 5; public 阅读全文
摘要:
1、定义一个增删改查基础类的接口 public partial interface IRepositoryBase<T> where T : BaseModel { T GetById(Guid id); T GetById(int id); T GetById(long id); T GetByI 阅读全文