/
SoRusV
/
src_xendil
Обзор
Документация
Войти
/
SoRusV
/
src_xendil
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Android/Here.java
13 строк
351 B
ruslan
Initial commit
29 окт 2024, 11:18
29 окт 2024, 11:18
5c4dcf5
Код
Авторство
О чём код?
package com.example.scord.scord; /** * Created by Oleg on 25.08.2017. */ public class Here { public static String At () { StackTraceElement ste = Thread.currentThread().getStackTrace()[3]; String where = ste.getClassName() + " " + ste.getMethodName() + " " + ste.getLineNumber() + " "; return where; } }