初始化
This commit is contained in:
34
UnityGame/Assets/Scripts/ThirdParty/YIUIFramework/Plugins/YIUIBase/Disposer/Disposer.cs
vendored
Normal file
34
UnityGame/Assets/Scripts/ThirdParty/YIUIFramework/Plugins/YIUIBase/Disposer/Disposer.cs
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
namespace YIUIFramework
|
||||
{
|
||||
/// <summary>
|
||||
/// IDisposer的实现
|
||||
/// 可以继承使用
|
||||
/// 如果只是用接口,可以直接复制使用
|
||||
/// </summary>
|
||||
public abstract class Disposer : IDisposer
|
||||
{
|
||||
public bool Disposed
|
||||
{
|
||||
get { return m_disposed; }
|
||||
}
|
||||
|
||||
public bool Dispose()
|
||||
{
|
||||
if (m_disposed)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
m_disposed = true;
|
||||
OnDispose();
|
||||
return true;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 处理释放相关事情
|
||||
/// </summary>
|
||||
protected abstract void OnDispose();
|
||||
|
||||
private bool m_disposed;
|
||||
}
|
||||
}
|
||||
3
UnityGame/Assets/Scripts/ThirdParty/YIUIFramework/Plugins/YIUIBase/Disposer/Disposer.cs.meta
vendored
Normal file
3
UnityGame/Assets/Scripts/ThirdParty/YIUIFramework/Plugins/YIUIBase/Disposer/Disposer.cs.meta
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5182d43dff414185b0367f9cb16945ed
|
||||
timeCreated: 1688978764
|
||||
19
UnityGame/Assets/Scripts/ThirdParty/YIUIFramework/Plugins/YIUIBase/Disposer/IDisposer.cs
vendored
Normal file
19
UnityGame/Assets/Scripts/ThirdParty/YIUIFramework/Plugins/YIUIBase/Disposer/IDisposer.cs
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
namespace YIUIFramework
|
||||
{
|
||||
/// <summary>
|
||||
/// 释放者接口
|
||||
/// </summary>
|
||||
public interface IDisposer
|
||||
{
|
||||
/// <summary>
|
||||
/// 表示是否已经释放过了
|
||||
/// </summary>
|
||||
bool Disposed { get; }
|
||||
|
||||
/// <summary>
|
||||
/// 释放资源,如果执行了这个方法,就不能再使用这个对象了
|
||||
/// </summary>
|
||||
/// <returns>true表示执行成功,false表示因为某些原因执行失败,最常见的就是,已经执行过这个方法</returns>
|
||||
bool Dispose();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3e437d9920734dfd87db67fed593e4a3
|
||||
timeCreated: 1681720464
|
||||
Reference in New Issue
Block a user