forked from renfufei/renfufei.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavarepl.html
More file actions
86 lines (71 loc) · 2.27 KB
/
javarepl.html
File metadata and controls
86 lines (71 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="renfufei.github.io : 铁锚的技术博客" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>Java-REPL-Web演示环境</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/renfufei">View on GitHub</a>
<h1 id="project_title">renfufei.github.io</h1>
<h2 id="project_tagline">铁锚的技术博客</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>Java-REPL-Web演示环境</h3>
<iframe src="http://www.javarepl.com/embed.html" style="width: 720px; height: 350px; border: 0px"></iframe>
</section>
<section id="main_content" class="inner">
<h3>示例用法(支持Ctrl+V 粘贴):</h3>
<p class="bottom">
<hr>
<span class="code_html">
java> 4 * 6 * 8
</span>
<hr>
</p>
<p class="bottom">
<hr>
<span class="code_html">
java>"2015@yucheng.com".matches("^\\d+@\\w+\\.\\w+$")
</span>
<hr>
</p>
<p class="bottom">
<hr>
<span class="code_html">
java> Integer num1 = 56;
<br/>
java> Integer num2 = 56;
<br/>
java> (num1 == num2)
</span>
<hr>
</p>
</section>
<section id="main_content" class="inner">
<h3>
<a name="support-or-contact" class="anchor" href="http://blog.csdn.net/renfufei/article/details/48481439">博客:Java9: REPL环境与编程</a></h3>
<p class="bottom">你也可以在自己的页面里面集成REPL:<hr>
<span class="code_html">
<iframe src="http://www.javarepl.com/embed.html" style="width: 720px; height: 350px; border: 0px"></iframe>
</span>
<hr>
</p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>