大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全家桶1年46,售后保障稳定
if…else…
<#if condition>
…
<#elseif condition2>
…
<#elseif condition3>
…
<#else>
…
</#if>
只有一个if的情况:
<#if x = 1>
x is 1
</#if>
包含elseif的情况:
<#if x = 1>
x is 1
<#elseif x = 2>
x is 2
<#elseif x = 3> //红色位置今以前出现else if 之间有空格,这个没有,今天出现这个…..
x is 3
</#if>
包含else的用法:
<#if x = 1>
x is 1
<#elseif x = 2>
x is 2
<#elseif x = 3>
x is 3
<#elseif x = 4>
x is 4
<#else>
x is not 1 nor 2 nor 3 nor 4
</#if>
switch…case…default…
<#switch value>
<#case refValue1>
…
<#break>
<#case refValue2>
…
<#break>
<#case refValueN>
…
<#break>
<#default>
…
</#switch>
类似Java的普通用法:
<#switch being.size>
<#case “small”>
This will be processed if it is small
<#break>
<#case “medium”>
This will be processed if it is medium
<#break>
<#case “large”>
This will be processed if it is large
<#break>
<#default>
This will be processed if it is neither
</#switch>
不使用break的方法,即在case中进行判断:
<#switch x>
<#case x = 1>
1
<#case x = 2>
2
<#default>
d
</#switch>
循环迭代结构
<#list sequence as item>
…
</#list>
迭代的同时会生成两个变量:item_index,item_has_next,意如其名:
<#assign seq = [“winter”, “spring”, “summer”, “autumn”]>
<#list seq as x>
${x_index + 1}. ${x}<#if x_has_next>,</#if>
</#list>
也可以用break跳出循环,用法和switch语句中的方法类似。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/234250.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...