{{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

MATLAB面向对象程序设计

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

MATLAB面向对象程序设计

{{__(":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
Editer Recommend

《MATLAB面向对象程序设计》是国内系统介绍MATLAB面向对象程序设计的书籍,重点突出、通俗易懂、案例充实、图文并茂、由浅入深、循序渐进、系统透彻。
MATLAB具有强大的数据可视化功能以及包含诸多面向不同领域的工具箱,并且它是一个开放式、可扩展的程序设计环境,因此,可以充分利用MATLAB所提供的这些工具箱和各种功能,以面向对象的程序设计方法来更加方便、快捷地设计应用程序,以便解决不同领域中的实际问题。
《MATLAB面向对象程序设计》的出版,必将大大方便大家对MATLAB面向对象程序设计的学习,加强MATLAB在该领域中的推广,提升大家的工程应用能力。

Content Description

《MATLAB面向对象程序设计》以面向对象程序设计方法的基本特征(抽象、封装、继承、多态)为主线,由浅入深、循序渐进地展开,系统介绍了MATLAB面向对象程序设计的思想、设计方法等。全书重点突出、通俗易懂,各章节提供大量的程序代码供读者参考练习,多数章节安排了相应的应用实例。全书分为11章,主要分为三部分:一是MATLAB基本操作和程序设计基础、面向对象程序设计思想,以及MATLAB面向对象程序设计特点等(第1~2章);二是详细介绍了MATLAB中面向对象程序的开发过程和设计方法(第3~10章);三是MATLAB面向对象程序设计方法的综合应用实例(第11章)。
《MATLAB面向对象程序设计》内容详实、科学合理,图文并茂、实例丰富,讲解系统透彻,通过《MATLAB面向对象程序设计》的学习读者可以很快理解MATLAB面向对象程序设计的基本思想,掌握其设计方法,提高利用MATLAB解决问题的能力和效率。
Author Description

苗志宏,云南省迪庆人。2001年毕业于北京师范大学数学系,获理学博士学位。现为中国人民武装警察部队学院消防工程系教授,主要从事数学和信息工程教学。参与多项国家自然科学基金项目的研究,发表论文30余篇,多篇被SCI、EI收录,主编著作《虚拟现实技术基础与应用》。马金强,河北省衡水人。硕士,现为中国人民武装警察部队学院消防工程系讲师。从事电子信息工程教育教学12年。发表学术论文10余篇,多篇被EI收录,主编教材1部,参与出版译著1部,出版了著作《多媒体制作与Authorware》,参与编写了著作《虚拟现实技术基础与应用》。
Catalogue

第1章 MATLAB入门
1.1 MATLAB概述
1.1.1 MATLAB的发展史
1.1.2 MATLAB体系结构
1.1.3 MATLAB功能特点
1.2 MATLAB的安装与运行
1.2.1 MATLAB的安装与激活
1.2.2 MATLAB的启动与退出
1.3 MATLAB开发环境
1.3.1 菜单栏
1.3.2 工具栏
1.3.3 MATLAB的窗口
1.4 MATLAB帮助和演示系统
1.4.1 命令窗口帮助系统
1.4.2 联机帮助
1.4.3 联机演示系统
1.5 矩阵及其运算
1.5.1 创建矩阵
1.5.2 矩阵访问
1.5.3 矩阵的赋值
1.5.4 矩阵的四则运算
1.5.5 点运算
1.5.6 矩阵的其他运算
1.5.7 矩阵操作
1.6 MATLAB图形用户界面设计
1.6.1 图形对象和句柄
1.6.2 图形窗口及坐标轴
1.6.3 用户界面对象
1.6.4 图形用户界面设计开发环境
1.7 小结
思考与练习

第2章 MATLAB面向对象程序设计概述
2.1 MATLAB程序设计基础
2.1.1 MATLAB的变量及数据类型
2.1.2 运算符与操作符
2.1.3 M文件介绍
2.1.4 函数的类型
2.1.5 MATLAB的程序设计原则
2.2 面向对象程序设计方法简介
2.2.1 程序设计方法的发展概述
2.2.2 面向对象程序设计方法
2.2.3 面向对象程序设计方法的优越性
2.2.4 面向对象程序设计的基本概念
2.2.5 面向对象程序设计方法中的基本特征
2.3 MATLAB面向对象程序设计简介
2.3.1 MATLAB中的类和对象
2.3.2 MATLAB中类的设计、定义
2.4 MATLAB面向对象程序设计特点
2.4.1 MATLAB面向对象程序设计的特点
2.4.2 MATLAB面向对象程序设计与其他语言
2.5 小结
思考与练习

第3章 MATLAB中的类和对象
3.1 类的声明
3.1.1 类的声明
3.1.2 对象的创建和使用
3.1.3 类的特属性
3.1.4 类定义的组织形式
3.1.5 命名空间和包
3.2 类的属性成员及访问控制
3.2.1 属性成员的声明和初始化
3.2.2 属性成员的特属性
3.2.3 属性成员的set和get方法
3.2.4 属性成员的访问控制
3.3 类的方法及访问控制
3.3.1 普通方法及访问控制
3.3.2 构造函数
3.3.3 静态方法
3.3.4 类型转换方法
3.4 类的组合
3.4.1 内嵌对象
3.4.2 类的优先级问题
3.4.3 对象的保存与加载
3.5 小结
思考与习题

第4章 MATLAB中的继承与派生
4.1 类的继承与派生
4.1.1 继承与派生的概念
4.1.2 派生类的定义
4.1.3 派生类生成过程
4.1.4 用派生类创建一个类的别名
4.2 派生类的构造函数
4.2.1 构造函数的建立
4.2.2 派生类构造函数执行的顺序
4.3 多重继承中的成员标识问题
4.3.1 属性成员名称冲突
4.3.2 方法名称冲突
4.3.3 事件名称冲突
4.4 指定容许派生的类
4.5 类成员的访问控制
4.5.1 属性成员的访问控制
4.5.2 方法的访问控制
4.5.3 事件的访问控制
4.6 定义MATLAB内置类型的派生类
4.6.1 MATLAB的内置类
4.6.2 定义MATLAB内置类的派生类
4.7 小结
思考与练习

第5章 handle型类
5.1 handle型类的声明
5.2 类handle的介绍
5.3 属性成员set/get接口的实现
5.4 动态属性成员的实现
5.5 handle型类的析构函数
5.6 handle-兼容类
5.7 深拷贝与浅拷贝
5.7.1 深拷贝与浅拷贝的概念
5.7.2 matlab.mixin.Copyable类简介
5.7.3 深拷贝的实现
5.8 应用实例
5.8.1 问题的提出
5.8.2 类的设计
5.8.3 源程序及运行效果
5.9 小结
思考与练习

第6章 对象阵列
6.1 MATLAB中常用的阵列形式
6.1.1 阵列的概念
6.1.2 几种常用的阵列
6.2 创建对象阵列
6.2.1 如何创建对象阵列
6.2.2 在对象阵列上添加动态属性成员
6.3 不同类型对象组成的对象阵列
6.3.1 不同类型对象的连接
6.3.2 转换方法的实现
6.4 多相对象阵列
6.4.1 matlab.mixin.Heterogeneous类及多相阵列创建
6.4.2 多相阵列的下标索引和连接
6.4.3 convertObject方法
6.5 小结
思考与练习

第7章 多态性
7.1 函数重载
7.2 运算符重载
7.2.1 运算符重载的实现
7.2.2 运算符重载中的优先级问题
7.2.3 subsref和subsasgn的重载
7.3 抽象类
7.3.1 抽象类的定义
7.3.2 有关抽象类的特殊规定
7.3.3 一个例子
7.4 小结
思考练习

第8章 事件与听众
8.1 事件与听众的概念
8.1.1 事件的概念及事件模型
8.1.2 听众的概念
8.2 定义事件和听众
8.2.1 如何命名一个事件
8.2.2 事件触发和广播
8.2.3 如何响应事件(听众的定义)
8.2.4 听众的几种创建方式
8.2.5 回调函数定义和调用
8.2.6 一个例子
8.3 属性成员事件的收听
8.3.1 属性成员事件
8.3.2 为属性成员事件创建听众
8.3.3 为听众定义回调函数
8.3.4 属性成员的AbortSet属性
8.4 动态属性成员事件响应
8.5 应用实例
8.5.1 问题的提出
8.5.2 类的设计
8.5.3 源程序及运行效果
8.6 小结
思考与练习

第9章 枚举
9.1 枚举概述
9.1.1 相关术语
9.1.2 枚举类型的分类
9.2 枚举类的定义和使用
9.2.1 枚举类的定义
9.2.2 枚举类中的方法
9.2.3 在枚举类中定义属性成员
9.2.4 枚举类的使用
9.2.5 枚举类与阵列
9.2.6 枚举类的构造函数调用顺序
9.2.7 枚举类在应用中的一些限制
9.3 小结
练习与思考

第10章 利用类元数据获取类信息
10.1 类元数据简介
10.1.1 相关概念
10.1.2 元类对象的创建和使用方法
10.2 元数据的使用
10.2.1 使用元数据查阅类和对象
10.2.2 查找具有指定设置的对象
10.2.3 获得关于属性成员的信息
10.2.4 获得属性成员的默认值
10.3 小结
思考与练习

第11章 综合应用实例
11.1 倒立摆控制演示实例
11.2 元胞自动机演示实例
11.3 小结
思考与练习
附录 MATLAB中的函数分类索引

参考文献
Introduction

MATLAB是MathWorks公司针对科学和工程计算开发的一款交互式软件,目前已发展成为集数值处理、图形处理、数学建模、实时控制、动态仿真和信号处理为一体的数学应用软件,并且成为目前世界上使用最广泛的科学计算软件之一。
虽然MATLAB的早期版本中已有类的概念,但其功能一般。从MATLABR2008a开始,MathWorks对MATLAB的面向程序设计进行了一些重大更新,吸取了面向对象程序设计语言的优点,除了支持封装、继承和多态这些基本特征外,还支持包括属性、事件等新的特征,这使得进行大型应用程序的开发、维护变得更加便捷,并显著增加代码的可重用性、可维护性和可扩展性。
然而,目前国内图书市场上有关MATLAB的书籍多偏重于MATLAB语言程序设计介绍和各种工具箱的专题介绍,专门介绍MATLAB面向对象程序设计的书籍还很少见到,只是在部分书籍中简单提及过。另一方面,目前大多数MATLAB的使用者在编写程序时常采用面向过程的结构化设计思想来组织程序,MATLAB面向对象程序设计的方法还较少被使用。
结构化程序设计方法由于采用了模块分解与功能抽象以及自顶向下、分而治之的策略,从而有效地将一个复杂的程序设计系统的设计任务分解成许多易于控制和处理的子任务,使其便于开发和维护。但是它的缺点是:把数据与对数据的操作分离开来,数据的安全性很难得到保证;当数据结构发生改变时,所有相关的处理函数都要进行相应的修改,程序的可重用性差;特别是在开发图形用户界面应用程序时,程序的开发越来越困难。而面向对象程序设计强调直接面对客观存在的事物来进行软件开发,将人们认识事物的习惯思维方式应用于软件开发中。面向对象程序设计将数据和对象数据的操作封装在一起,形成一个有机的整体,使程序模块之间的关系更加简单、独立性更强,这样就使数据的安全性得到良好的保障。此外,通过面向对象程序设计的继承和多态机制可以大大提高程序的可重用性,从而提高程序开发的效率。
目前流行的C++、Java以及C#语言都是支持面向对象程序设计的语言,我们完全可以基于这些语言,利用面向对象程序设计的方法设计出复杂的应用软件。然而MATLAB具有强大数据可视化功能以及包含诸多面向不同领域的工具箱,并且它是一个开放式、可扩展的程序设计环境,因此可以充分利用MATLAB所提供的这些工具箱和各种功能,以面向对象程序设计的方法来更加方便、快捷地设计应用程序,从而解决不同领域中的实际问题。
为此,我们经过几年来的不断教学和实践,精心编写了《MATLAB面向对象程序设计》一书,全书按照面向对象程序设计的基本特征为主线,兼顾了MATLAB中一些特有功能,合理组织内容,力求知识点讲解透彻,同时尽可能多地穿插应用实例。全书共11章,具体内容如下。
第1章:MATLAB概述,介绍MATLAB的发展历程、体系结构、主要特征,MATLAB的安装与运行,MATLAB的集成环境和帮助系统的使用,MATLAB程序设计基础知识以及MATLAB图形用户界面的设计。
第2章:MATLAB面向对象程序设计概述,介绍面向对象程序设计的基本思想、特征,MATLAB中面向对象程序设计的基本流程、特点以及与其他面向对象程序设计语言的区别等。
第3章:按照“封装”的基本特征,主要介绍MATLAB面向对象程序设计中的核心概念“类及对象”,详细介绍在MATLAB下如何声明一个类、如何创建一个对象、如何编写一个类的构造函数以及类成员的访问控制等问题。这一章以介绍value型类为主。
第4章:主要介绍MATLAB下“继承与派生”有关的一些概念,如继承与派生、基类与派生类、单继承和多重继承等。
第5章:主要介绍handle型类和对象的概念、handle型类析构函数的定义、深拷贝和浅拷贝原理、如何使属性成员实现句柄图形类型的标准set/get接口风格以及在类中动态添加属性成员的过程。
第6章:主要介绍MATLAB面向对象程序设计中的对象阵列的创建过程。
第7章:按照“多态性”的基本特征,介绍MATLAB面向对象程序设计中的函数重载、运算符重载等内容。
第8章:主要介绍事件和听众的概念,以及如何使用事件模型来实现基于事件驱动的、具有交互响应功能的程序设计过程。
第9章:主要讲解MATLAB中枚举的作用、枚举类的定义方法和使用等。
第10章:主要讲解元类的基本概念,元类、元对象的使用方法,并结合实例详细介绍如何利用类元数据获取类信息的步骤、方法等。
第11章:综合前面介绍的内容,将MATLAB面向对象程序设计方法应用到关于倒立摆控制仿真设计和元胞自动机模拟设计问题中。
本书编写过程中大量参考了MATLAB软件帮助文档中的相关内容和实例;在涉及MATLAB的基本操作中,参考了文献[1~6]中的部分内容;在讲解面向对象程序设计的基本原理时,参照了文献[7~10]的部分内容;在元胞自动机模拟实现中,参考了文献[11~12]的部分内容。在此,向这些作者们表示谢意。作者在编写本书的过程中,对于书中每个原理都亲自在MATLAB上进行了检验,并为此编写了大量的验证性代码,某些部分的内容描述是作者归纳总结的结果,书中多数应用实例的程序设计具有一定的原创性。
本书由苗志宏负责统稿工作,并编写了第3、4、5、6、7、8、11章的内容,马金强编写了第1、2、9、10章的内容,李智慧参与了书稿的审阅工作。本书写作之初还得到了电子工业出版社张国霞编辑的鼓励和支持,在此深表谢意。由于作者能力所限,又是初次将MATLAB中面向对象程序设计的内容进行归纳、总结,书中难免存在错误和不足之处,诚挚欢迎各位同行、读者的批评指正。作者电子邮箱地址:miaozhh@21cn.com。
苗志宏
2014年5月9日

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