最新发布第1471页
5 best resources to learn Scala-拾光赋

5 best resources to learn Scala

5 best resources to learn Scala,Scala is one of the most popular languages used in the JVM ecosystem. The recent post by Li Haoyi explains why Scala is entering the ‘slope of enli...
Higher Order Functions (HOF) in Scala-拾光赋

Higher Order Functions (HOF) in Scala

Higher Order Functions (HOF) in Scala,Higher Order Functions (HOF) in Scala are the very core of this functional programming language. Scala treats functions as a first class citiz...
Monads in Scala by example-拾光赋

Monads in Scala by example

Monads in Scala by example,Monad is a quite popular construct used in functional programming world. Scala is no different there, utilizing monads in various places of standard libr...
Variances in Scala-拾光赋

Variances in Scala

Variances in Scala,Scala supports using type parameters to implement a classes and functions that can support multiple types. Type parameters are very useful when creating a generi...
Scala tail recursion by example-拾光赋

Scala tail recursion by example

Scala tail recursion by example,A tail recursive function in Scala is remedy if your recursive functions causes a stack overflow. Furthermore, tail recursion is a great way if to m...
5 Scala syntactic Tips&Tricks-拾光赋

5 Scala syntactic Tips&Tricks

5 Scala syntactic Tips&Tricks,Scala is quite a special language. Your initial lines of code, especially if you know Java, are quite simple. But, after digging deeper into all hidde...
Bit Manipulation Techniques-拾光赋

Bit Manipulation Techniques

Bit Manipulation Techniques,LIKE MYSELF I HAVE SEEN MANY PEOPLE SPECIALLY BEGINNERS STRUGGLING WITH BIT MANIPULATIONS IN THE BEGINNING! SO I THOUGHT I WOULD WRITE A POST SO THAT PE...
Spring JPA: Under the covers-拾光赋

Spring JPA: Under the covers

Spring JPA: Under the covers, Spring Data JPA In the early days, the DAO layer used to consist or still has a lot of boilerplate code which makes it cumbersome to implement. Spring...
Collect analytics data for your App using AWS Amplify-拾光赋

Collect analytics data for your App using AWS Amplify

Collect analytics data for your App using AWS Amplify, AWS Amplify (10 Part Series) 1 Login With Amazon using AWS Amplify Auth 2 Collect analytics data for your App using AWS Ampli...
Understand Type Variances in 30 Seconds-拾光赋

Understand Type Variances in 30 Seconds

Understand Type Variances in 30 Seconds,Type variances are a topic which most Java developers don't usually think about, but which can take some getting used to for those transitio...
Dependency Injection in Java is easy - Part 2 - Google Guice-拾光赋

Dependency Injection in Java is easy – Part 2 – Google Guice

Dependency Injection in Java is easy - Part 2 - Google Guice, Dependency Injection in Java is easy (3 Part Series) 1 Dependency Injection in Java is easy - Part 1 - A Design Patter...
Types vs. Classes-拾光赋

Types vs. Classes

Types vs. Classes,Some languages (Java in particular) blur the line between types and classes. You may even see them used interchangeably in tutorials, documentation, etc. While th...