- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在尝试想出一个使用 Func<Func<T>,T>
的案例会有用的。
想出 Func<T,T>
的例子是微不足道的,例如
Func<int,int> square = n => n*n;
但我无法想出使用类似 Func<Func<T>,T>
的示例案例
另一方面,Func<T,Func<T>>
的用法
似乎微不足道,例如
Func<int,Func<int,int>> k = k => square;
Func<Func<T>,T>
是否有任何众所周知的用例?或 Func<T,Func<T>>
或一些讨论类似主题的引用资料?
最佳答案
幸好你没有要求一个简单的用例:)
用例:假设您需要汇集来自设备的值。访问设备很费力(在某些指标上)。有时您可以接受旧值(无法真正访问设备),有时您需要绝对最新值(必须访问设备),有时您需要介于两者之间。哦,您还必须能够即时更改合并值和/或设备。
下面是满足上述要求的解决方案:
public class Cache
{
public int? CachedValue { get; private set;}
public DateTime cacheLastRetrieved { get; private set; }
public void SetCache(int value)
{
CachedValue = value;
cacheLastRetrieved = DateTime.Now;
}
public Func<Func<int>, int> CacheStrategy;
public void ResetCache()
{
CachedValue = null;
}
public int Get(Func<int> f)
{
return CacheStrategy(f);
}
}
public static class CacheFactory
{
private static Func<Func<int>, int>
MakeCacheStrategy(Cache cache, Func<Cache, bool> mustGetRealValue)
{
return f =>
{
if (mustGetRealValue(cache))
{
int value = f();
cache.SetCache(value);
return value;
}
return (int)cache.CachedValue;
};
}
public static Func<Func<int>, int> NoCacheStrategy(Cache cache)
{
return MakeCacheStrategy(cache, c => true);
}
public static Func<Func<int>, int> ForeverCacheStrategy(Cache cache)
{
return MakeCacheStrategy(cache, c => c.CachedValue == null);
}
public static Func<Func<int>, int>
SimpleCacheStrategy(Cache cache, TimeSpan keepAliveTime)
{
return MakeCacheStrategy(cache,
c => c.CachedValue == null
|| c.cacheLastRetrieved + keepAliveTime < DateTime.Now);
}
}
public class Device
{
static Random rnd = new Random();
public int Get()
{
return rnd.Next(0, 100);
}
}
public class Program
{
public static void Main()
{
Device dev = new Device();
Cache cache = new Cache();
cache.ResetCache();
cache.CacheStrategy = CacheFactory.NoCacheStrategy(cache);
Console.Write("no cache strategy: ");
for (int i = 0; i < 10; ++i)
{
Console.Write(cache.Get(dev.Get) + " ");
}
Console.WriteLine();
cache.ResetCache();
cache.CacheStrategy = CacheFactory.ForeverCacheStrategy(cache);
Console.Write("forever cache strategy: ");
for (int i = 0; i < 10; ++i)
{
Console.Write(cache.Get(dev.Get) + " ");
}
Console.WriteLine();
cache.ResetCache();
cache.CacheStrategy
= CacheFactory.SimpleCacheStrategy(cache, TimeSpan.FromMilliseconds(300));
Console.Write("refresh after 300ms strategy: ");
for (int i = 0; i < 10; ++i)
{
Console.Write(cache.Get(dev.Get) + " ");
System.Threading.Thread.Sleep(TimeSpan.FromMilliseconds(100));
}
Console.WriteLine();
}
}
示例输出:
no cache strategy: 70 29 9 16 61 32 10 77 14 77
forever cache strategy: 96 96 96 96 96 96 96 96 96 96
refresh after 300ms strategy: 19 19 19 22 22 22 91 91 91 10
关于c# - Func<Func<T>,T> 的示例和用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52156527/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
我有实体: @Entity @Table(name = "CARDS") public class Card { @ManyToOne @JoinColumn(name = "PERSON_I
我正在尝试计算二维多边形的表面法线。我正在使用 OpenGL wiki 中的 Newell 方法来计算表面法线。 https://www.opengl.org/wiki/Calculating_a_S
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 7 年前。 Improve
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我这里有以下 XML: Visa, Mastercard, , , , 0, Discover, American Express siteonly, Buyer Pay
即将发生的 Google 政策变更迫使我们实现一个对话框,以通知欧盟用户有关 Cookie/设备标识符用于广告和分析的情况。我只想向欧盟用户显示此对话框。我不想使用额外的权限(例如 android.p
本文分享自华为云社区《华为大咖说 | 企业应用AI大模型的“道、法、术” ——道:认知篇》,作者:华为云PaaS服务小智。 本期核心观点 上车:AGI是未来5~10年内,每个人都无法回避的技
我有一个与酒精相关的网站,需要先验证年龄,然后才能让他们进入该网站。我使用 HttpModule 来执行此操作,该模块检查 cookie,如果未设置,我会将它们重定向到验证页面。我验证他们的年龄并存储
在欧盟,我们有一项法律,要求网页请求存储 cookie 的许可。我们大多数人都了解 cookie 并同意它们,但仍然被迫在任何地方明确接受它们。所以我计划编写这个附加组件(ff & chrome),它
以下在 C 和/或 C++ 中是否合法? void fn(); inline void fn() { /*Do something here*/ } 让我担心的是,第一个声明看起来暗示函数将被定义
我是一名优秀的程序员,十分优秀!