大约有 800 项符合查询结果(耗时:0.0119秒) [XML]

https://bbs.tsingfun.com/thread-1707-1-1.html 

弹球游戏aia源码,仅27个代码块 - .aia 案例源码 - 清泛IT社区,为创新赋能!

https://www.fun123.cn/reference/info/#AppEntry 项目指南中弹球游戏源码,仅27个代码块。
https://bbs.tsingfun.com/thread-2108-1-1.html 

如何导出项目源代码用于申请软件著作权? - App Inventor 2 中文网 - 清泛I...

如何导出项目源代码(用于申请软件著作权)?已微信回复,待后续整理相关指南。https://bbs.tsingfun.com/thread-2118-1-1.html
https://stackoverflow.com/ques... 

Passing enum or object through an intent (the best solution)

... = EnumUtil.deserialize(AwesomeEnum.class).from(intent); OPTION 3 (with Kotlin): It's been a while, but since now we have Kotlin, I thought I would add another option for the new paradigm. Here we can make use of extension functions and reified types (which retains the type when compiling). inl...
https://stackoverflow.com/ques... 

Converting double to string

... Kotlin You can use .toString directly on any data type in kotlin, like val d : Double = 100.00 val string : String = d.toString() share | ...
https://www.tsingfun.com/it/cpp/656.html 

Win32汇编--使用MASM - C/C++ - 清泛网 - 专注C/C++及内核技术

...是代码段了吧!接下来通过这个例子程序逐段介绍Win32汇编程序的结构。 模式定义 程序的第一部分是模式和源程序格式的定义语句: .386 .model flat,stdcall option ...
https://www.tsingfun.com/ilife/tech/1934.html 

一文讲透区块链技术原理 - 资讯 - 清泛网 - 专注C/C++及内核技术

...链系统设计者还引入了“脚本”的概念来实现数据库的可编程性。我们认为,这四大技术构成了区块链的核心技术。 核心技术1:区块+链 关于如何建立一个严谨数据库的问题,区块链的办法是:将数据库的结构进行创新,把数...
https://www.tsingfun.com/it/tech/963.html 

C# Stream流使用总结 - 更多技术 - 清泛网 - 专注C/C++及内核技术

C# Stream流使用总结本篇文章简单总结了在C#编程中经常会用到的一些流。比如说FileStream、MemoryStream、 BufferedStream、 NetWorkStream、 StreamReader StreamWriter、 TextReader TextWriter等的简单用法。一、FileStream类 FileStream类主要用于读取磁盘上...
https://www.tsingfun.com/ilife/idea/849.html 

PHP大潮将至 PHP近年发展分析 - 创意 - 清泛网 - 专注C/C++及内核技术

...飞猛进。EDC在2006年的统计信息表明PHP已经跻身全球三个编程语言的行列,并且其是以Web脚本语言的身份参与竞争的。其它两个语言(Java和.net)都是通用的语言(可以开发多种应用)。但是,令人难以置信的是,PHP目前的发展速度是37...
https://stackoverflow.com/ques... 

How to activate “Share” button in android app?

... in kotlin : val sharingIntent = Intent(android.content.Intent.ACTION_SEND) sharingIntent.type = "text/plain" val shareBody = "Application Link : https://play.google.com/store/apps/details?id=${App.context.getPackageName()}" sha...
https://stackoverflow.com/ques... 

Android: how to make keyboard enter button say “Search” and handle its click?

... In Kotlin evLoginPassword.setOnEditorActionListener { _, actionId, _ -> if (actionId == EditorInfo.IME_ACTION_DONE) { doTheLoginWork() } true } Partial Xml Code <LinearLayout android:layout...