Skip to content

Commit 81c2ded

Browse files
committed
deploy: 569634e
1 parent 2d10438 commit 81c2ded

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

ch08-00-pointer.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,13 @@ <h2 id="关联associate"><a class="header" href="#关联associate">关联(<code>
252252
<li>同一个语句中不能连续定义</li>
253253
</ul>
254254
<pre><code class="language-fortran">associate(x=&gt;point(1),x2=&gt;x*x ) !错误
255+
end associate
255256
</code></pre>
256257
<p>需要改成</p>
257258
<pre><code class="language-fortran">associate(x=&gt;point(1))
258259
associate(x2=&gt;x*x)
260+
end associate
261+
end associate
259262
</code></pre>
260263
<p>这是<code>associate</code>结构的不足之处</p>
261264

print.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2154,10 +2154,13 @@ <h2 id="关联associate"><a class="header" href="#关联associate">关联(<code>
21542154
<li>同一个语句中不能连续定义</li>
21552155
</ul>
21562156
<pre><code class="language-fortran">associate(x=&gt;point(1),x2=&gt;x*x ) !错误
2157+
end associate
21572158
</code></pre>
21582159
<p>需要改成</p>
21592160
<pre><code class="language-fortran">associate(x=&gt;point(1))
21602161
associate(x2=&gt;x*x)
2162+
end associate
2163+
end associate
21612164
</code></pre>
21622165
<p>这是<code>associate</code>结构的不足之处</p>
21632166
<div style="break-before: page; page-break-before: always;"></div><h1 id="内存安全"><a class="header" href="#内存安全">内存安全</a></h1>

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)