java框架有什么意义?
我在 jstack 的文档中找到了:
jstack 打印给定 Java 进程或核心的 Java 线程的 Java 堆栈跟踪 文件或远程调试服务器。对于每个Java框架,完整的类名、方法名、 打印“bci”(字节码索引)和行号(如果可用)。与-m 选项,jstack 打印所有线程的 Java 和本机帧以及 “pc”(程序计数器)。对于每个本机帧,最接近“pc”的本机符号, 如果有的话,会打印出来。 C++ 损坏的名称不会被损坏。分解 C++ 名称,该命令的输出可以通过管道传输到 c++filt。
我知道框架是视觉界面的元素,但在这种情况下它似乎有所不同? 在 Google 中搜索会生成指向视觉元素的链接。看来框架是关于线程的。有可能找到定义吗?谢谢。
I have found in docs for jstack:
jstack prints Java stack traces of Java threads for a given Java process or core
file or a remote debug server. For each Java frame, the full class name, method name,
'bci' (byte code index) and line number, if available, are printed. With the -m
option, jstack prints both Java and native frames of all threads along with the
'pc' (program counter). For each native frame, the closest native symbol to 'pc',
if available, is printed. C++ mangled names are not demangled. To demangle C++
names, the output of this command may be piped to c++filt.
I know frame is element of visual interface, but in this context it seems different?
Search in Google produce links to visual element. It seems that frame is about threading. Does it possible found definition? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此上下文中的“框架”指的是 堆栈框架,不是可视 GUI 元素。
简而言之,每个方法调用都会生成一个堆栈帧,其中存储局部变量/结果/返回值。通过跟踪程序的堆栈帧,您可以了解当前的调用堆栈
"frame" in this context refers to a stack frame, not a visual GUI element.
The short explanation is that every method call produces a stack frame, where local variables/results/return values are stored. By following the stack frames of your program, you can learn the current call stack
这里的“帧”是指堆栈帧,程序调用堆栈的一部分。 http://en.wikipedia.org/wiki/Call_stack
Here "frame" means stack frame, the parts of a program's call stack. http://en.wikipedia.org/wiki/Call_stack