首页 | 互联网 | IT动态 | IT培训 | Cisco | Windows | Linux | Java | .Net | Oracle | 软件测试 | C/C++ | 嵌入式开发 | 存储世界 | 服务器
网络设备 | IDC | 安全 | 求职招聘 | 数字网校 | 网页设计 | 平面设计 | 技术专题 | 电子书下载 | 教学视频 | 源码下载 | 搜索 | 博客 | 论坛
中国IT实验室Dotnet频道
中国IT教育
Google
首页 ASP.NET  C#  XML/WebService ADO.NET VC.NET VB.NET .NET 资讯动态 专题 RSS订阅 讨论 下载
您现在的位置: 中国IT实验室 >> Dotnet >> .NET Framework >> 正文

XSL中几个封装的函数

     布尔操作函数
  
  <!-- ======================================================== -->
  <!-- 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>
【责编:Peng】

中国IT教育

相关产品和培训
文章评论
 友情推荐链接
 认证培训
 专题推荐

 ·WEB程序开发--ASP.NET和PHP、JSP究竟学哪个?
 ·五步带你入门XML
 ·关于Java框架技术专题
 ·XML全攻略技术专题
 ·JAVA开源技术介绍专题
 ·Java嵌入式开发之J2ME技术专题
 ·超前体验 Oracle 11g的5个新特性…
 ·揭密使用VB.NET的五个实用技巧
 ·Oracle和SQL Server常用函数对比专题…
 ·展现C#世界 C#程序设计专题…
 今日更新
 社区讨论
 博客论点
 频道精选
 Dotnet频道相关导航