创建和继承单例基类
Posted yueqingli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建和继承单例基类相关的知识,希望对你有一定的参考价值。
using System.Collections; using System.Collections.Generic; using UnityEngine; public class PoolMar : MonoBehaviour { // Start is called before the first frame update void Start() { } // Update is called once per frame void Update() { } } public class Student <T> where T:new() { public static T instance; public static T MyStudent() { if (instance == null) { instance = new T(); } return instance; } } public class Student1 :Student<Student1> { }
以上是关于创建和继承单例基类的主要内容,如果未能解决你的问题,请参考以下文章
Python接口测试实战4(下) - 框架完善:用例基类,用例标签,重新运行上次失败用例
Python接口测试实战4(下) - 框架完善:用例基类,用例标签,重新运行上次失败用例