熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

ASP.NET入門教程 13.3.1 購物對象[9]

2022-06-13   來源: .NET編程 

    索引用於標識購物車中的每個商品它存儲每個產品的ProductID如果購物車中的第一個商品是圍巾則索引中的第一項將包含圍巾的ProductID如果沒有獲得ProductID則返回而不是指示該產品當前不在購物車中並且需要為其創建一個CartItem對象

    最後說明Total:

 

Public ReadOnly Property Total() As Double

            Get

                Dim t As Double

 

                If _items Is Nothing Then

                    Return

                End If

 

                For Each Item As CartItem In _items

                    t += ItemLineTotal

                Next

 

                Return t

            End Get

        End Property

    它也是相當簡單的特性如果集合中沒有任何項(通過查看它是否是Nothing來檢查這一點)則不可以進行任何算術操作否則遍歷Cartltem集合中的每個Item針對該項增加LineTotal特性並且作為變量t返回總數

   ASPNET 入門教程完整版

[]  []  []  []  []  []  []  []  []  


From:http://tw.wingwit.com/Article/program/net/201311/15595.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.