Notice
Recent Posts
Recent Comments
Link
투케이2K
500. (kotlin/코틀린) [유틸 파일] numberEncodeFormatString : 10 진수 값을 특정 진법 값으로 변환 수행 본문
Kotlin
500. (kotlin/코틀린) [유틸 파일] numberEncodeFormatString : 10 진수 값을 특정 진법 값으로 변환 수행
투케이2K 2024. 5. 3. 20:13[개발 환경 설정]
개발 툴 : AndroidStudio
개발 언어 : Kotlin
[소스 코드]
// -----------------------------------------------------------------------------------------
// TODO [SEARCH FAST] : [numberEncodeFormatString] : 10 진수 값을 특정 진법 값으로 변환 수행
// -----------------------------------------------------------------------------------------
fun numberEncodeFormatString(type: Int, data: Int): String {
/**
* // -----------------------------------------
* [numberEncodeFormatString 메소드 설명]
* // -----------------------------------------
* 1. 10 진수 값을 특정 진법 값으로 변환 수행
* // -----------------------------------------
* 2. 호출 방식 :
*
* C_Encryption.numberEncodeFormatString(2, 10) // [2 진법]
* // -----------------------------------------
* 3. 리턴 데이터 : 1010
* // -----------------------------------------
*/
// [리턴 반환 변수 선언 실시]
var returnData = ""
// [로직 처리 실시]
try {
if (type == 2) {
returnData = Integer.toBinaryString(data)
} else if (type == 8) {
returnData = Integer.toOctalString(data)
} else if (type == 16) {
returnData = Integer.toHexString(data)
}
} catch (e: Exception) {
S_Log._printStackTrace_(null, S_FinalMsg.LOG_BUG_STATE, null, e)
}
// [로그 출력 실시]
///*
// ===============================================================
S_Log._D_("10 진수 값을 특정 진법 값으로 변환 수행", arrayOf(
"INPUT [TYPE] :: $type",
"INPUT [DATA] :: $data",
"RETURN :: $returnData"
))
// ===============================================================
// */
// [리턴 결과 반환 실시]
return returnData
}
[결과 출력]
D///===========//: ================================================
I/: [LOG :: CLASS PLACE :: com.example.kotlinproject.C_Encryption.numberEncodeFormatString]
I/: ----------------------------------------------------
I/: [LOG :: NOW TIME :: 2024-05-03 10:29:01 금요일]
I/: ----------------------------------------------------
I/: [LOG :: DESCRIPTION :: 10 진수 값을 특정 진법 값으로 변환 수행]
I/: ----------------------------------------------------
I/: [LOG :: INPUT [TYPE] :: 2]
I/: ----------------------------------------------------
I/: [LOG :: INPUT [DATA] :: 10]
I/: ----------------------------------------------------
I/: [LOG :: RETURN :: 1010]
D///===========//: ================================================
반응형
'Kotlin' 카테고리의 다른 글
Comments