XSL中几个封装的函数---布尔操作函数

本文介绍了一种使用XSLT实现位运算的方法,包括布尔或运算(BooleanOR)、布尔与运算(BooleanAND)及布尔异或运算(BooleanXOR)。这些模板通过递归地检查每个位来完成操作,仅适用于无符号整数。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

<!-- ======================================================== -->     
<!-- Function: BooleanOR(<value1>,<value2>) => number -->     
<!-- Parameters:- -->     <!-- <value1> - the first number to be ORed -->     
<!-- <value2> - the second number to be ORed -->     
<!-- NB. Only works with unsigned ints! -->     
<xsl:template name="BooleanOR">      
<xsl:param name="value1" select="number(0)"/>      
<xsl:param name="value2" select="number(0)"/>      
<!-- recurse parameters -->      
<xsl:param name="bitval" select="number(2147483648)"/>      
<xsl:param name="accum" select="number(0)"/>      
<!-- calc bits present on values -->      
<xsl:variable name="bit1" select="floor($value1 div $bitval)"/>      
<xsl:variable name="bit2" select="floor($value2 div $bitval)"/>      
<!-- do the OR on the bits -->      
<xsl:variable name="thisbit">      
<xsl:choose>      
<xsl:when test="($bit1 != 0) or ($bit2 != 0)">
<xsl:value-of select="$bitval"/>
</xsl:when>      
<xsl:otherwise>0</xsl:otherwise>      
</xsl:choose>      
</xsl:variable>      
<!-- if last recurse then output the value -->      
<xsl:choose>      
<xsl:when test="$bitval = 1">
<xsl:value-of select="$accum + $thisbit"/>
</xsl:when>      
<xsl:otherwise>      
<!-- recurse required -->      
<xsl:call-template name="BooleanOR">      
<xsl:with-param name="value1" select="$value1 mod $bitval"/>      
<xsl:with-param name="value2" select="$value2 mod $bitval"/>      
<xsl:with-param name="bitval" select="$bitval div 2"/>      
<xsl:with-param name="accum" select="$accum + $thisbit"/>      
</xsl:call-template>      
</xsl:otherwise>      
</xsl:choose>     
</xsl:template>          
<!-- ======================================================== -->     
<!-- Function: BooleanAND(<value1>,<value2>) => number -->     
<!-- Parameters:- -->     <!-- <value1> - the first number to be ANDed -->     
<!-- <value2> - the second number to be ANDed -->     
<!-- NB. Only works with unsigned ints! -->     
<xsl:template name="BooleanAND">      
<xsl:param name="value1" select="number(0)"/>      
<xsl:param name="value2" select="number(0)"/>      
<!-- recurse parameters -->      
<xsl:param name="bitval" select="number(2147483648)"/>      
<xsl:param name="accum" select="number(0)"/>      
<!-- calc bits present on values -->      
<xsl:variable name="bit1" select="floor($value1 div $bitval)"/>      
<xsl:variable name="bit2" select="floor($value2 div $bitval)"/>      
<!-- do the AND on the bits -->      
<xsl:variable name="thisbit">      
<xsl:choose>      
<xsl:when test="($bit1 != 0) and ($bit2 != 0)">
<xsl:value-of select="$bitval"/></xsl:when>      
<xsl:otherwise>0</xsl:otherwise>      
</xsl:choose>     
</xsl:variable>      
<!-- if last recurse then output the value -->      
<xsl:choose>      
<xsl:when test="$bitval = 1">
<xsl:value-of select="$accum + $thisbit"/>
</xsl:when>      
<xsl:otherwise>      
<!-- recurse required -->      
<xsl:call-template name="BooleanAND">      
<xsl:with-param name="value1" select="$value1 mod $bitval"/>      
<xsl:with-param name="value2" select="$value2 mod $bitval"/>      
<xsl:with-param name="bitval" select="$bitval div 2"/>      
<xsl:with-param name="accum" select="$accum + $thisbit"/>      
</xsl:call-template>      
</xsl:otherwise>      
</xsl:choose>     
</xsl:template>          
<!-- ======================================================== -->     
<!-- Function: BooleanXOR(<value1>,<value2>) => number -->     
<!-- Parameters:- -->     <!-- <value1> - the first number to be XORed -->     
<!-- <value2> - the second number to be XORed -->     
<!-- NB. Only works with unsigned ints! -->     
<xsl:template name="BooleanXOR">      
<xsl:param name="value1" select="number(0)"/>      
<xsl:param name="value2" select="number(0)"/>      
<!-- recurse parameters -->      
<xsl:param name="bitval" select="number(2147483648)"/>      
<xsl:param name="accum" select="number(0)"/>      
<!-- calc bits present on values -->      
<xsl:variable name="bit1" select="floor($value1 div $bitval)"/>      
<xsl:variable name="bit2" select="floor($value2 div $bitval)"/>      
<!-- do the XOR on the bits -->      
<xsl:variable name="thisbit">      
<xsl:choose>      
<xsl:when test="(($bit1 != 0) and ($bit2 = 0)) or (($bit1 = 0) and ($bit2     != 0))">
<xsl:value-of select="$bitval"/>
</xsl:when>      
<xsl:otherwise>0</xsl:otherwise>      
</xsl:choose>      
</xsl:variable>      
<!-- if last recurse then output the value -->      
<xsl:choose>      
<xsl:when test="$bitval = 1">
<xsl:value-of select="$accum + $thisbit"/>
</xsl:when>      
<xsl:otherwise>      
<!-- recurse required -->      
<xsl:call-template name="BooleanXOR">      
<xsl:with-param name="value1" select="$value1 mod $bitval"/>      
<xsl:with-param name="value2" select="$value2 mod $bitval"/>      
<xsl:with-param name="bitval" select="$bitval div 2"/>      
<xsl:with-param name="accum" select="$accum + $thisbit"/>      
</xsl:call-template>      
</xsl:otherwise>      
</xsl:choose>     
</xsl:template> 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值