Kotlin
cotrForInLoop
Kotlin For…In Loop
for (item in ${1:iterable}) { // Your code here}
cotrThrow
Kotlin Throw Exception
throw ${1:Exception('Your message here')}
cotrEntry
Kotlin Entry Point
// Kotlin Entry Point// To run this program, use: `kotlinc filename.kt -include-runtime -d filename.jar && java -jar filename.jar`
fun main() { println("Hello, World!")}
cotrOperators
Kotlin Mathematical Operators
// Kotlin Mathematical Operators// Addition: +// Subtraction: -// Multiplication: *// Exponentiation: **// Division: /// Modulus (Remainder): %// Increment: ++// Decrement: --// Assignment: =// Addition assignment: +=// Subtraction assignment: -=// Multiplication assignment: *=// Division assignment: /=// Modulus assignment: %=
cotrTypeConvert
Kotlin Type Conversion
// Kotlin Type Conversion:
// Implicit conversions (compiler performs automatically):// - Smaller numeric types to larger numeric types (e.g., Int to Double).
// Explicit conversions (using casts):// - variable as Type // Safe cast (returns null if conversion fails)// - variable.toType() // Conversion methods (e.g., toInt(), toDouble())
// Note:// - Be cautious with explicit conversions, as they can lead to data loss or errors if the conversion is not valid.
cotrVarSyntax
Variable Declaration Syntax
// Kotlin Variable Declaration Syntax:
// - var: (Scope: Block or Class)// - Can be reassigned.// - Use for variables that need to be changed.
// - val: (Scope: Block or Class)// - Cannot be reassigned after initialization.// - Preferred for values that should remain constant.
// Note:// - Use 'val' by default for values that won't change.// - Use 'var' only when you need to reassign the variable.
cotrVarList
Kotlin Create List Variable
var ${1:myList} = listOf(${2:'item1'}, ${3:'item2'})
cotrFuncArgs
Kotlin Function Args
// In Kotlin, functions can have arguments with default values.fun ${2:myFunction}(${3:arg1}: ${4:Type1}, ${5:arg2}: ${6:Type2} = ${7:defaultValue}): ${1:Unit} { ${8:// Your code here}}
cotrTypesBoolFalse
Kotlin Boolean False
false
cotrNow
Kotlin Date Now
import java.time.LocalDate
val now: LocalDate = LocalDate.now()
cotrTypesChar
Kotlin Character Type
Char
cotrEqual
Kotlin Equal To
==
cotrVarTyped
Kotlin Create Typed Variable
var ${1:myVar}: ${2:Type} = $3
cotrWhileLoop
Kotlin While Loop
while (${1:condition}) { // Your code here}
cotrFuncAnon
Kotlin Anonymous Function
fun(${1:parameters}): ${2:ReturnType} { ${3:// Your code here}}
cotrComment
Kotlin Comment
// ${1:Your comment here}
cotrTypeCheck
Kotlin Type Check
${1:variable}::class
cotrGenMap
Kotlin Generate Map
val ${1:myMap} = (0 until ${2:length}).associate { 'key' + it to 'value' + it}
cotrPrintMulti
Kotlin Print Multi
println("""${1:Line 1}${2:Line 2}${3:Line 3}""")
cotrTypeCompare
Kotlin Type Comparison
// Check if two variables have the same type:if (${1:variable1}::class == ${2:variable2}::class) { // Your code here}
cotrTypesInt
Kotlin Integer Type
Int
cotrForLoop
Kotlin For Loop
for (i in ${1:0 until 10}) { // Your code here}
cotrInterpolate
Kotlin Interpolate String
"${1:Your message here}"
cotrCommentMulti
Kotlin Multi-Line Comment
/* * ${1:Your comment here} */
cotrIfElse
Kotlin If Else Statement
if (${1:condition}) { // Your code here} else if (${2:condition}) { // Your code here} else { // Your code here}
cotrTryCatch
Kotlin Try Catch
try { // Your code here} catch (${1:exception}) { // Your code here}
cotrTypesList
Kotlin List Type
List<${1:type}>
cotrVarNumAlt
Kotlin Create Float Variable
var ${1:myFloat} = ${2:0.0f}
cotrPrint
Kotlin Print
println(${1:'Your message here'})
cotrTernary
Kotlin Ternary Operator
${1:condition} ? ${2:trueValue} : ${3:falseValue}
cotrInfo
Kotlin Info
Typing: Statically typedParadigm: Multi-paradigm: object-oriented, functional, imperativeCompilation: Compiled to bytecode for the Java Virtual Machine (JVM), JavaScript, or native binariesConcurrency: Supports coroutines for asynchronous programming and concurrency
cotrVarBool
Kotlin Create Boolean Variable
var ${1:myBool} = ${2:true}
cotrGenList
Kotlin Generate List
val ${1:myList} = List(${2:length}) { 'item' + it}
cotrVarMap
Kotlin Create Map Variable
var ${1:myMap} = mapOf( ${2:'key1' to 'value1'}, ${3:'key2' to 'value2'}, // Add more key-value pairs here)
cotrTypesBool
Kotlin Boolean Type
Boolean
cotrTypesBoolTrue
Kotlin Boolean True
true
cotrVarString
Kotlin Create String Variable
var ${1:myString} = "${2:myValue}"
cotrStructure
Kotlin Project Structure (High-Level)
// Recommended High-Level Kotlin Project Structure:
// - src/main/kotlin/// - Contains Kotlin source files.// - Organize code into packages reflecting features or functionality.// - Example: com/example/myapp/domain, com/example/myapp/service, etc.
// - src/main/resources/// - Contains project resources, such as property files, configuration, and static assets.
// - src/test/kotlin/// - Contains Kotlin test files.// - Structure should mirror the src/main/kotlin directory.
// - src/test/resources/// - Contains resources for testing, like test configurations and data.
// - lib/// - Contains external libraries or dependencies not managed by the build system.// - Typically, dependencies are managed by Gradle or Maven and may not need this directory.
// - build/// - Contains compiled bytecode files and other build artifacts (Gradle or Maven output).
// - docs/// - Contains project documentation, like API docs, design documents, and user guides.
// - scripts/// - Contains build and utility scripts, like shell scripts for automation tasks.
// Note:// - Use build tools like Gradle or Maven for dependency management and build processes.// - This structure can vary depending on the specific needs and scale of the project.
cotrFuncArgsNamed
Kotlin Function Named Args
fun ${2:myFunction}(${3:arg1}: ${4:Type1} = ${5:defaultValue1}, ${6:arg2}: ${7:Type2} = ${8:defaultValue2}): ${1:Unit} { ${9:// Your code here}}
cotrFuncSyntax
Kotlin Function Syntax
// Kotlin Function Syntax// Basic function: fun functionName(parameters): ReturnType { ... }// Function with arguments: fun functionName(arg1: Type1, arg2: Type2, ...): ReturnType { ... }// Function with named arguments and default values: fun functionName(arg1: Type1 = defaultValue1, arg2: Type2 = defaultValue2, ...): ReturnType { ... }
cotrEnum
Kotlin Enum
enum class ${1:MyEnum} { ${2:value1}, ${3:value2}, // Add more values here}
cotrConcat
Kotlin Concatenate String
"${1:Your message here}" + "${2:another message}"
cotrVarStringMulti
Kotlin Create Multi-Line String Variable
var ${1:myString} = """${2:Line 1}${3:Line 2}${4:Line 3}"""
cotrWhen
Kotlin When Expression
when (${1:variable}) { ${2:value1} -> { // Your code here } ${3:value2} -> { // Your code here } else -> { // Your code here }}
cotrClass
Kotlin Class
class ${1:MyClass} { // Your code here}
cotrTypesDate
Kotlin Date Type
import java.time.LocalDate
cotrVarInt
Kotlin Create Integer Variable
var ${1:myInt} = ${2:0}
cotrConst
Kotlin Create Value (Constant)
val ${1:myConst} = $2
cotrTypes
Kotlin Types
$BLOCK_COMMENT_STARTKotlin is a statically typed language.
Types in Kotlin include:- Int: Integer- Double: Double-precision floating-point number- Float: Single-precision floating-point number- Char: Character- Boolean: Boolean- String: String- Array<T>: Array of type T- List<T>: List of type T- Set<T>: Set of unique elements of type T- Map<K, V>: Map with key type K and value type V- Any: Base type of all non-nullable types- Unit: Type with only one value - Unit (similar to void)- Nothing: Type with no values - used for functions that never return- Nullable types (e.g., Int?, String?): Types that can hold a value or null- Function types (e.g., (Int, Int) -> Int): Types representing functions- Data classes: Classes primarily used to hold data- Sealed classes: Classes that restrict which other classes can inherit from them- Enum classes: Enumeration classes- Object: Singleton object- Companion object: Object associated with a class- Interface: Interface type
Read more here: https://kotlinlang.org/docs/basic-types.html$BLOCK_COMMENT_END
cotrFuncLambda
Kotlin Lambda
val ${1:myLambda}: (${2:ParameterType}) -> ${3:ReturnType} = { ${4:parameters} -> ${5:expression}}
cotrFunc
Kotlin Function
fun ${2:myFunction}(${3:parameters}): ${1:Unit} { ${4:// Your code here}}
cotrNotEqual
Kotlin Not Equal To
!=
cotrVar
Kotlin Create Variable
var ${1:myVar} = $2
cotrVarNum
Kotlin Create Double Variable
var ${1:myDouble} = ${2:0.0}
cotrVarNullable
Kotlin Create Nullable Variable
var ${1:myVar}: ${2:Type}? = null
cotrOperatorsBool
Kotlin Boolean Operators
// Kotlin Boolean Operators// Logical AND: &&// Logical OR: ||// Logical NOT: !// Equality: ==// Inequality: !=// Greater than: >// Less than: <// Greater than or equal to: >=// Less than or equal to: <=
cotrTypesNumAlt
Kotlin Float Type
Float
cotrTypesAny
Kotlin Dynamic Type
Any
cotrTypesNull
Kotlin Null Type
null
cotrVarDate
Kotlin Create Date Variable
import java.time.LocalDate
val ${1:myDate}: LocalDate = LocalDate.of(${2:year}, ${3:month}, ${4:day})
cotrIf
Kotlin If Statement
if (${1:condition}) { // Your code here}
cotrTypesString
Kotlin String Type
String
cotrTypesNum
Kotlin Double Type
Double
cotrTypesMap
Kotlin Map Type
Map<${1:keyType}, ${2:valueType}>