上一页 1 ··· 173 174 175 176 177 178 179 180 181 ··· 498 下一页
摘要: // Shorter version class AnotherAlternativeCustomer (val name: String,var age: Int, val address: String = "") { var approvered: Boolean = false set(va 阅读全文
posted @ 2020-10-27 16:49 Zhentiw 阅读(121) 评论(0) 推荐(0)
摘要: package com.rsk class Customer (val name: String, val address: String, var age: Int) { // if we don't want to pass in the address constructor(name: St 阅读全文
posted @ 2020-10-27 16:42 Zhentiw 阅读(138) 评论(0) 推荐(0)
摘要: In this lesson, we use CSS transforms to create configurable 3D cuboids. Using CSS transforms in combination with scoped CSS variables, we are able to 阅读全文
posted @ 2020-10-26 21:37 Zhentiw 阅读(189) 评论(0) 推荐(0)
摘要: In this lesson, we explore how you can use CSS variables almost like Boolean values in combination with calc(). By setting a variable to 1 or 0 and th 阅读全文
posted @ 2020-10-26 21:29 Zhentiw 阅读(146) 评论(0) 推荐(0)
摘要: val randomNumber = Random().nextInt(3) if (randomNumber is BigDecimal) { result = result.add(BigDecimal(36)) } If you use type check, then 'result' is 阅读全文
posted @ 2020-10-26 18:36 Zhentiw 阅读(69) 评论(0) 推荐(0)
摘要: Let's see following code: println(colors.reduce { acc, curr -> "$acc, $curr" }) // red, blue, green, black val myMap = mapOf(1 to "one", 2 to "two", 3 阅读全文
posted @ 2020-10-26 16:22 Zhentiw 阅读(117) 评论(0) 推荐(0)
摘要: In kotlin, "fold" is same in Javascript's reduce. "fold" has initial value "reduce" in kotlin, you don't give initial value val colors = listOf("red", 阅读全文
posted @ 2020-10-26 16:14 Zhentiw 阅读(216) 评论(0) 推荐(0)
摘要: import { curry, compose, toUpper, pipe } from 'ramda'; // #region listeners const _log = (value) => console.log(value); // #endregion // #region broad 阅读全文
posted @ 2020-10-25 22:11 Zhentiw 阅读(150) 评论(0) 推荐(0)
摘要: Buffers give you chance to gather values together until your ready to work with them. This pattern can be used for calculations, string manipulations, 阅读全文
posted @ 2020-10-25 22:10 Zhentiw 阅读(115) 评论(0) 推荐(0)
摘要: In our previous code, we have seen this partten for operators: // #region operators const concat = curry((broadcaster, listener) => { let string = ''; 阅读全文
posted @ 2020-10-25 21:54 Zhentiw 阅读(168) 评论(0) 推荐(0)
上一页 1 ··· 173 174 175 176 177 178 179 180 181 ··· 498 下一页