25 Matching Annotations
  1. Apr 2023
    1. 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. *

  2. Dec 2022
  3. Aug 2022
    1. Function<*, String> means Function<in Nothing, String>.Function<Int, *> means Function<Int, out Any?>.Function<*, *> means Function<in Nothing, out Any?>.

      星投影

    1. 任何类型,当它被“?”修饰,变成可空类型以后,它就变成原本类型的父类了。所以,从某种程度上讲,我们可以认为“Any?”是所有 Kotlin 类型的根类型
    2. 还有助于我们实现函数类型

      类型系统与函数式编程在静态类型语言中相辅相成

    1. 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" } } }

      为什么是这样的一个结构

  4. Jul 2022
  5. Dec 2021
  6. Apr 2021
    1. 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.

  7. Mar 2021
    1. 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.
  8. May 2020
    1. 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
  9. Apr 2020
    1. 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
  10. Nov 2019
  11. Oct 2019
  12. Sep 2017
    1. If you mark a declaration private, it will only be visible inside the file containing the declaration;
  13. Aug 2017
    1. 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.
  14. Jul 2017
  15. Jun 2017