jjzjj

automatic-ref-counting

全部标签

c# - 如何保存 ref 变量供以后使用?

所以这有效..publicMyClass(refAppleapple){apple=newApple("Macintosh");//Worksfine}但是有没有可能做这样的事情呢?privateApplemyApple;publicMyClass(refAppleapple){myApple=apple;}publicvoidModifyApple(){myApple=newApple("Macintosh");//doesnotchangetheinputvariablelikethefirstexampledid}当ref变量被复制到成员变量myApple时,它似乎失去了它的“r

c# - 优化 LINQ Count() > X

这个问题在这里已经有了答案:EfficientLinqEnumerable's'Count()==1'test(7个答案)关闭6年前。问题:给定IEnumerable,如何检查包含超过x的序列项目?MCVE:staticvoidMain(string[]args){vartest=Test().Where(o=>o>2&&o1)//howtooptimizethis?foreach(vartintest)//consumerConsole.WriteLine(t);}staticIEnumerableTest(){for(inti=0;i这里的问题是什么Count()将运行完整的序列,

c# - 使用 Web API 和 JSON.NET 序列化对象时防止 $id/$ref

我似乎无法阻止WebAPI/JSON.NET在序列化对象时使用Newtonsoft.Json.PreserveReferencesHandling.Objects。换句话说,尽管使用了以下设置,但$id/$ref始终在序列化对象中使用:publicclassMvcApplication:System.Web.HttpApplication{protectedvoidApplication_Start(){WebApiConfig.Register(GlobalConfiguration.Configuration);}}publicstaticclassWebApiConfig{pub

c# - 属性、索引器或动态成员访问不能作为 out 或 ref 参数传递

这个问题在这里已经有了答案:C#propertyandrefparameter,whynosugar?(9个回答)Apropertyorindexermaynotbepassedasanoutorrefparameter(9个回答)关闭9年前。您好,我无法弄清楚这一点。我有这些结构和类。structCircle{...}classPainting{Listcircles;publicListcircles{get{returncircles;}}}我正在尝试使用以下代码从绘画类外部修改其中一个圆圈:MutatePosition(refpainting.Circles[mutationI

c# - WMPLib : player. mediaCollection.getAll().count 始终为 0

我正在尝试编写代码以从用户的WindowsMediaPlayer库中读取每个项目。此代码适用于大多数用户,但对于某些用户,当他们的WindowsMediaPlayer库中显然有成百上千个项目时,getAll()将返回一个空列表。varplayer=newWindowsMediaPlayer();varcollection=player.mediaCollection;varlist=collection.getAll();inttotal=list.count;我通过添加对wmp.dll的COM引用来引用WMPLib命名空间。我的应用程序附带Interop.WMPLib.dll。某些用

c# - 为什么匿名委托(delegate)/lambda 不推断 out/ref 参数的类型?

StackOverflow上的几个C#问题询问如何使用out或ref参数制作匿名委托(delegate)/lambda。参见,例如:CallingamethodwithreforoutparametersfromananonymousmethodWritealambdaoranonymousfunctionthatacceptsanoutparameter为此,您只需指定参数的类型,如:publicvoiddelegateD(outTp);//...Da=(outTt)=>{...};//Lambdasyntax.Db=delegate(outTt){...};//Anonymousd

c# - 在类 C# 中使用 ref

我想为我正在制作的类(class)提供一个特定的链表。我希望类写入该列表(例如通过.addLast())。我应该为此使用ref关键字吗?我对在C#中在哪里使用ref和out关键字感到有些困惑,因为所有classes都是在堆上动态分配的,并且我们实际上使用指针进行大多数操作。当然,out和ref关键字对于基元和结构是有意义的。还有,如果我不直接发送列表,而是发送一个包含列表的类呢?(它是internal并且需要),我还需要使用ref吗?或者如果我在函数之间传递它,例如:voidA(refLinkedListlist){B(list);}voidB(refLinkedListlist){_

c# - 使用指针和 ref 关键字引用值有什么区别

我有以下代码:classProgram{privateunsafestaticvoidSquarePtrParam(int*input){*input*=*input;}privatestaticvoidSquareRefParam(refintinput){input*=input;}privateunsafestaticvoidMain(){intvalue=10;SquarePtrParam(&value);Console.WriteLine(value);intvalue2=10;SquareRefParam(refvalue2);Console.WriteLine(value

c# - 使用 out 和 ref 参数时的装箱和拆箱

当方法接受ValueType的out/ref参数时是否会发生装箱/拆箱? 最佳答案 对于ref关键字它已经在MSDN上提到了那:Donotconfusetheconceptofpassingbyreferencewiththeconceptofreferencetypes.Thetwoconceptsarenotthesame.Amethodparametercanbemodifiedbyrefregardlessofwhetheritisavaluetypeorareferencetype.Thereisnoboxingofava

c# - C# 7.0 中的 Ref 返回限制

我试图理解以下摘自官方博客文章的摘录,该文章介绍了C#7.0中与引用返回有关的新功能。Youcanonlyreturnrefsthatare“safetoreturn”:Onesthatwerepassedtoyou,andonesthatpointintofieldsinobjects.Reflocalsareinitializedtoacertainstoragelocation,andcannotbemutatedtopointtoanother.遗憾的是,该博文没有给出任何代码示例。如果有人可以通过实际示例和解释进一步阐明以粗体突出显示的限制,我们将不胜感激。提前致谢。