- Sep 2024
-
www.hiremobiledevelopers.com www.hiremobiledevelopers.com
-
This is a collection of excellent Kotlin App Examples. While millions of people have downloaded some of them from Google Play after being produced by prestigious corporations, others are well-liked open-source initiatives that developers find valuable.
-
- Apr 2023
-
codeberg.org codeberg.org
-
construir apps com código parcialmente em Java eparcialmente em Kotlin, sem restrições.
Kotlin é uma linguagem de programação usada para desenvolvimento Android que possui um alto grau de compatibilidade com Java. Isso permite que os desenvolvedores criem aplicativos Android com código parcialmente em Java e parcialmente em Kotlin, sem restrições. Além disso, Kotlin oferece recursos adicionais em relação ao Java, tornando o código mais limpo, seguro e fácil de ler e escrever.
A compatibilidade com Java permite aos desenvolvedores usar Kotlin em novos projetos ou migrar gradualmente seus aplicativos existentes para a linguagem, *sem ter que reescrever todo o código de uma vez. *
-
- Dec 2022
-
www.zhihu.com www.zhihu.com
-
在开发中使用Kotlin有什么奇巧淫技?
Tags
Annotators
URL
-
-
www.zhihu.com www.zhihu.com
-
Kotlin 语言培训市场规模有多大?
Tags
Annotators
URL
-
-
www.zhihu.com www.zhihu.com
-
如何评价 Clean Code 作者对 Swift 与 Kotlin 的看法?
Tags
Annotators
URL
-
-
www.zhihu.com www.zhihu.com
-
如何评价王垠的《Kotlin和Checked Exception》?
Tags
Annotators
URL
-
- Aug 2022
-
kotlinlang.org kotlinlang.org
-
Function<*, String> means Function<in Nothing, String>.Function<Int, *> means Function<Int, out Any?>.Function<*, *> means Function<in Nothing, out Any?>.
星投影
Tags
Annotators
URL
-
-
time.geekbang.org time.geekbang.org
-
任何类型,当它被“?”修饰,变成可空类型以后,它就变成原本类型的父类了。所以,从某种程度上讲,我们可以认为“Any?”是所有 Kotlin 类型的根类型
-
还有助于我们实现函数类型
类型系统与函数式编程在静态类型语言中相辅相成
Tags
Annotators
URL
-
-
time.geekbang.org time.geekbang.org
-
val parameterAnnotations = method.parameterAnnotations for (i in parameterAnnotations.indices) { for (parameterAnnotation in parameterAnnotations[i]) { // ② if (parameterAnnotation is Field) { val key = parameterAnnotation.value val value = args[i].toString() if (!url.contains("?")) { // ③ url += "?$key=$value" } else { // ④ url += "&$key=$value" } } }
为什么是这样的一个结构
Tags
Annotators
URL
-
-
time.geekbang.org time.geekbang.org
-
无副作用的函数,它具有引用透明的特性
引用透明,结果可以替代函数调用
Tags
Annotators
URL
-
- Jul 2022
-
time.geekbang.org time.geekbang.org
-
(::onClick
函数引用
Tags
Annotators
URL
-
- Dec 2021
- Apr 2021
-
developer.android.com developer.android.com
-
Preferences DataStore and Proto DataStore DataStore provides two different implementations: Preferences DataStore and Proto DataStore. Preferences DataStore stores and accesses data using keys. This implementation does not require a predefined schema, and it does not provide type safety. Proto DataStore stores data as instances of a custom data type. This implementation requires you to define a schema using protocol buffers, but it provides type safety.
Currently, I am using SharedPreference which is still alright to use. However, there is a better option called DataStore. This allows data to be stored asynchronously.
-
- Mar 2021
-
medium.com medium.com
-
Because it requires less code to do the same thing as other programming languages projects can be developed faster
-
-
www.flutterstory.com www.flutterstory.com
-
In this post, we will know the differences between Flutter and Kotlin by considering multiple parameters. Before comparison, we must have an understanding of these technologies.
Tags
Annotators
URL
-
- May 2020
-
muldoon.cloud muldoon.cloud
-
Programming languages These will probably expose my ignorance pretty nicely.
When to use different programming languages (advice from an Amazon employee):
- Java - enterprise applications
- C# - Microsoft's spin on Java (useful in the Microsoft's ecosystem)
- Ruby - when speed is more important then legibility or debugging
- Python - same as Ruby but also for ML/AI (don't forget to use type hinting to make life a little saner)
- Go/Rust - fresh web service where latency and performance were more important than community/library support
- Haskell/Erlang - for very elegant/mathematical functional approach without a lot of business logic
- Clojure - in situation when you love Lisp (?)
- Kotlin/Scala - languages compiling to JVM bytecode (preferable over Clojure). Kotlin works with Java and has great IntelliJ support
- C - classes of applications (operating systems, language design, low-level programming and hardware)
- C++ - robotics, video games and high frequency trading where the performance gains from no garbage collection make it preferable to Java
- PHP/Hack - testing server changes without rebuilding. PHP is banned at Amazon due to security reasons, but its successor, Hack, runs a lot of Facebook and Slack's backends
-
- Apr 2020
-
tech.olx.com tech.olx.com
-
no one had tried using both Flutter and Kotlin/Native.
-
-
blog.kotlin-academy.com blog.kotlin-academy.com
-
They are both trying to extract common parts above platform, but Kotlin Multiplatform is interested in logic extraction when Flutter is interested in view definitions extraction. They concentrate on the opposite, and they might highly benefit from working together
-
- Nov 2019
-
github.com github.com
- Oct 2019
-
proandroiddev.com proandroiddev.com
-
avoid defining the common fields in all the classes
-
- Sep 2017
-
kotlinlang.org kotlinlang.org
-
If you mark a declaration private, it will only be visible inside the file containing the declaration;
-
- Aug 2017
-
github.com github.com
-
if you work in multi-threaded environment or otherwise share mutable state between coroutines running in different threads, then you have to use thread-safe (concurrent) data structures.
-
- Jul 2017
- Jun 2017
-
victor.kropp.name victor.kropp.name
-
blog.jetbrains.com blog.jetbrains.com
-
Yes, we can do builders like Groovy, but better..
-