natlogger.cc

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· CC 代码 · 共 56 行

CC
56
字号
// natLogger.cc - Native part of Logger class./* Copyright (C) 1998, 1999, 2000, 2001, 2005  Free Software Foundation   This Logger is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License.  Please consult the Logger "LIBGCJ_LICENSE" fordetails.  */#include <config.h>#include <platform.h>#include <string.h>#pragma implementation "Logger.h"#include <gcj/cni.h>#include <jvm.h>#include <java/lang/Object.h>#include <java/lang/Class.h>#include <java/util/logging/Logger.h>#include <java/lang/StackTraceElement.h>#include <java/lang/ArrayIndexOutOfBoundsException.h>java::lang::StackTraceElement* java::util::logging::Logger::getCallerStackFrame (){  gnu::gcj::runtime::StackTrace *t     = new gnu::gcj::runtime::StackTrace(4);  java::lang::Class *klass = NULL;  int i = 1;  try    {      // skip until this class      while ((klass = t->classAt (i)) != getClass())	i++;      // skip the stackentries of this class      while ((klass = t->classAt (i)) == getClass() || klass == NULL)	i++;    }  catch (::java::lang::ArrayIndexOutOfBoundsException *e)    {      // FIXME: RuntimeError    }  java::lang::StackTraceElement *e     = new java::lang::StackTraceElement    (JvNewStringUTF (""), 0,      klass->getName(), t->methodAt(i), false);  return e;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?