{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

软件体系结构

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

软件体系结构

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

Building software nowadays is far more difficult than it can be done several decadesago. At that time, software engineers focused on how to manipulate the computer towork and then solve problems correctly. The organization of data andimplementation of algorithm were the crucial process of software designing then.However, more and more tasks in low level, such as memory management andnetwork communication,have been automatized or at least can be reused with littleeffort and cost.Programmers and designers,with the help of high level programminglanguages and wieldy development tools,can pay more attention to problems, ratherthan bury themselves into the machine code manuals. However,the side effect ofthese utilities is that more complicated problems are given according to therequirements from military,enterprise and so on,in which the complexity growsrapidly day by day. We believe that software architecture is a key to deal with it.
Catalogue

1 Introduction to Software Architecture
1.1A Brief History of Software Development
1.1.1 The Evolution of-Programming Language——-'Abstract Level
1.1.2 The Evolution of Software Development- Concerns
1.1.3 The Origin and Growth of Software Architecture
1.2 Introduction to Software Architecture
1.2.1 Basic Terminologjes
1.2.2 Understanding IEEE 1471-2000
1.2.3 Views Used in Software Architecture
1.2.4 Why We Need Software Architecture
1.2.5 Where Is Software Architecture in Software Life Cycle
1.3 Summary
References

2 Architectural Styles and Patterns
2.1 Fundamentals of Architectural Styles and Patterns
2.2 Pipes Filters
2.2.1 Style Description
2.2.2 Study Case
2.3 Object-oriented
2.3.1 Style Description
2.3.2 Study Case
2.4 Event-driven
2.4.1 Style Description
2.4.2 Study Case
2.5 Hierarchical Layer
2.5.1 Style Description
2.5.2 Study Case
2.6 Data Sharing
2.6.1 Style Description
2.6.2 Study Case
2.7 Virtual Machine
2.7.1 Style Description
2.7.2 Study Case
2.8 Feedback Loop
2.8.1 Style Description
2.8.2 Study Case
2.9 Comparison among Styles
2.10 Integration of Heterogeneous Styles
2.11 Summary
References

3 Application and Analysis of Architectural Styles
3.1 Introduction to SMCSP
3.1.1 Program Background
3.1.2 Technical Routes
3.1.3 Function Design
3.2 System Realization
3.2.1 The Pattern Choice
3.2.2 Interaction Mechanism
3.2.3Realization of Mobile Collaboration
3.2.4 Knowledge-based Design
3.3 Summary
References

4 Software Architecture Description
4.1 Formal Description of Software Architecture
4.1.1 Problems in Informal Description
4.1.2 Why Are Formal Methods Necessary
4.2 Architectural Description Language
4.2.1 Introduction to ADL
4.2.2 Comparing among Typical ADLs
4.2.3 Describing Architectural Behaviors
4.3 Study Case: WRIGHT System
4.3.1 Description of Component and Connector
4.3.2 Description of Configuration
4.3.3 Description of Style
4.3.CSP-Semantic Basis of Formal Behavior Description
4.4FEAL:An Infrastructure to Construct ADLs
4.4.1 Design Purpose
4.4.2 F EC
4.4.3 FEAL Structure
4.4.4 FEAL Mapper
4.4.5 Examples of FEAL Application
4.5 Summary
……

5 Design Strategies in Architecture Level
6 Software Architecture IDE
7 Evaluating Software Architecture
8 Flexible Software Architecture
9 A Vision on Software Architecture
Index
Book Abstract

(3)It is easy to implement grammar. It is similar to define the class of every node in the abstract grammar tree, and these classes are easy to write directly. Generally, they can be automatically generated by compiler or grammar analysis generat or.
In this part, we will describe the roles in the Boolean expression system. Generally speaking, there are five roles in this type of system. The first one is BooleanExpression.This role declares an abstract Evaluate operation, this interface is shared by all the nodes of the Boolean expression abstract gammar tree. The second role is TerminaIExpression (such as VariableExpression and Constant).This type of role implements the Evaluation operation in the BooleanExpression that arerelated to terminals, every terminal in the Boolean Expression needs an objectinstance of this class. The third role is NonterminaIExpression(such asAndExpression,Or Expression and NotExpression). Every rule in the Booleanexpression grammar needs an object instance of NonterminalExpression, and we must maintain object instance of Boolean Expression for every symbolin every rulein the Boolean expression grammar.We also need to implement the Evaluate operation for every NonterminaIExpression in the grammar. In the NonterminaIExpressionEvaluate operation, we must call the Evaluate operation for every symbol in the grammar. The fourth role is context (this is "the inner state of interpreter engine") It includes the global information besides the interpreter. The fifth role is client. Client will constructs a special Boolean expression's abstract grammar tree in the Boolean expression's definition,and this abstract grammar tree is composed by theinstance objects of TerminalExpression and NonterminalExpression. The client willalso call the Evaluate operation.
The collaboration relationship between these five roles can be simply describedas follows:At first, the client constructs a Boolean Expression, which is an abstractgrammar tree which is composed by instances of TerminaIExpression andNonterminalExpression. Then the client initiates the context and calls interpret operation.Then every NonterminalExpression defines the Evaluate operation of theaccording expression, and all the Evaluate operation of the expression forms thebasis of-recursive evaluation.At last, the Evaluate operation of every node uses the context to store and access the states of interpreter system.
In this and the following part, we will introduce the implementation methods ofBoolean expression evaluation system. When encountering the real implementationof Boolean expression, we have many details to deal with, and the process qualityof these details directly influences the whole system's performance. Theseproblems are mainly incarnated in the following aspects:The first problem is to construct the abstract grammar tree. The interpreterstyle does not specify how to construct an abstract grammar tree in detail, that is tosay, the interpreter style does not involve syntax analysis. But when we areconstructing an abstract grammar tree, we need to use a table-driven grammaranalysis program to finish this task; we can also use the recursive decline grammaranalysis program to construct the abstract grammar tree.
The second problem is how to define the Evaluate operation.In fact, Evaluateoperation does not need to be defined and implemented in the expression's classes.If we need to construct a new interpreter frequently, we can use the Visitor style indesign pattern theory, put the Evaluate operation in an independent "Visitor"object, this method may be better. For instance, a program design language has manyoperations on abstract gammar tree, such as type check, code optimization andcode generation, etc. A proper way is to use a visitor, so as to avoid defining thisoperation in every class.
The third problem is the shared terminals. In some grammars, many terminalsmay occur in the same sentences (such as true and false in-Boolean expressionevaluation system).In this case, it is better to share the copy of that symbol. Theterminal nodes usually do not store their positions in the grammar tree, in theprocess of evaluation, any context information they required is transferred by theirparent nodes. So, the inner state and outer state in the terminal node are explicitlydifferent. We can implement those using Flyweight design patterns.
In the implementation of Boolean expression evaluation system, we define twooperations in the Boolean expression. The first operation is Evaluate, which evaluatethe value of the specified Boolean expression in the context, and this context mustprovide 6'true" or "false" for every variable. The second operation is Replace,which replaces a variable with an expression so as to generate new Booleanexpression. The Replace operation makes the system not only finish the evaluationof Boolean expression, but also do the grammar analysis of the Boolean expression.Because of the manuscript length constraint, we will not describe theimplementation details of each subclass. The interpreter style has an important characteristic: we can use manyoperations to "interpret" the same sentence. Among the three operations we definedin the BooleanExpression, the Evaluate operation is the basic operation in theprocess of computing Boolean Expression. It interprets a Boolean expression andreturns a simple result. But in the above system, we do not only have the Evaluateoperation, the replacement and copy can also be treated as interpreter, and the onlydifference is the interpretation for the sentence.
……

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book