如何在Java中键入π(pi)? [英] How to type π (pi) in Java?

查看:462
本文介绍了如何在Java中键入π(pi)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Math API中是否有一个字符允许表示字符π

Is there a character within the Math API that allows for representing the character π?

推荐答案

您甚至不需要使用Math API。在Java源代码中,这个:

You don't even need to use the Math API. In Java source code, this:

\u03C0

相当于:

π

您甚至可以在标识符中使用它;这两个是等价的:

and you can even use it in an identifier; these two are equivalent:

final String \u03C0 = "\u03C0";
final String π = "π";

(正如规范所说:


表格 \u xxxx 的Unicode转义,其中 xxxx 是十六进制值,表示编码为 xxxx 的UTF-16代码单元。此转换步骤允许任何程序仅使用ASCII字符表示。

A Unicode escape of the form \uxxxx, where xxxx is a hexadecimal value, represents the UTF-16 code unit whose encoding is xxxx. This translation step allows any program to be expressed using only ASCII characters.

请参阅 http:/ /java.sun.com/docs/books/jls/third_edition/html/lexical.html#3.2 。)

这篇关于如何在Java中键入π(pi)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆