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

OS X与iOS内核编程

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

OS X与iOS内核编程

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

· 专注XNU内核开发实践的图书
· 一线设备驱动程序开发人员现身说法
· 轻松理解内核开发的晦涩难懂之处

Content Description

与传统的用户应用程序开发不同,内核环境更加复杂多变,任何问题都会严重影响系统的稳定性、安全性和性能,所以一定要确保内核代码中没有任何错误。《OS X与iOS内核编程》介绍了非常实用的内核开发方法,是XNU内核开发者必备的“九阴真经”。
《OS X与iOS内核编程》两位作者都活跃在计算机软硬件以及驱动程序开发一线,具有丰富的实战经验。Ole Henry Halvorsen是最早一批为USB 3.0和Thunderbolt创建视频硬件设备的开发人员。Douglas Clarke具有15年以上的麦金塔计算机专业软硬件开发经验。本书汇集了两位作者多年的实战经验与智慧感悟,展现了一幅XNU内核编程与设备驱动程序开发的斑斓画卷。相信在作者循循善诱、通俗易懂的讲解下,读者定能为书中的精彩内容深深吸引,渐入化境,在不知不觉中炼就内核开发的绝世武功。
如果你对iOS和Mac OS X操作系统感兴趣,关注内核开发,或者你本身就是驱动程序开发人员,那么如此精彩的一本好书绝对不容错过。

Author Description

Ole Henry Halvorsen,目前在一家生产专业视频设备的公司担任高级软件工程师,负责面向Mac、Linux和PC的高端高清视频硬件驱动程序和软件开发。他是最早一批为USB 3.0和Thunderbolt创建视频硬件设备的开发者,曾是美国SGI公司的研发工程师,致力于研究NAS和SAN存储技术,以及为超级计算和高性能计算提供解决方案。Halvorsen拥有澳大利亚莫纳什大学网络计算学士学位以及信息技术硕士学位。

Douglas Clarke,有15年以上的麦金塔计算机专业开发经验。他职业生涯的大部分时间都致力于硬件和设备驱动程序开发,曾为Mac OS 9、Mac OS X和Windows编写驱动程序。早在Mac OS X第1版面市一年以前,他就开始接触I/O Kit,从那以后一直在使用它。目前Clarke正在为实时视频应用开发驱动程序,他拥有澳大利亚莫纳什大学计算机科学学士学位。

Catalogue

第1章操作系统原理
1.1 操作系统的作用
1.2 进程管理
1.3 进程地址空间
1.4 操作系统服务
1.5 虚拟内存
1.6 调度
1.7 硬件和驱动程序
1.8 小结


第2章Mac OS X和iOS
2.1 XNU内核
2.1.1 内核扩展(KEXT)
2.1.2 Mach
2.1.3 BSD层
2.1.4 I/O Kit
2.2 小结


第3章Xcode和内核开发环境
3.1 语言的选择:C++
3.2 Xcode
3.3 “Hello World”内核扩展
3.4 加载和卸载内核扩展
3.5 使用控制台查看输出
3.6 小结


第4章I/O Kit框架
4.1 I/O Kit 模型
4.2 对象关系
4.3 Info.plist文件
4.3.1 驱动程序类
4.3.2 IORegistryExplorer
4.4 内核库:libkern
4.4.1 OSObject
4.4.2 容器类
4.5 小结


第5章应用程序与驱动程序的交互
5.1 I/O Kit框架
5.2 查找驱动程序
5.3 观察设备移除
5.4 修改设备驱动程序属性
5.5 基于状态的交互
5.6 驱动程序的通知
5.7 小结


第6章内存管理
6.1 内存类型
6.1.1 CPU物理地址
6.1.2 总线物理地址
6.1.3 用户和内核虚拟地址
6.1.4 内存顺序:大端序和小端序
6.1.5 32位和64位内存寻址
6.2 内存分配
6.2.1 底层分配机制
6.2.2 Mach内存域分配器
6.2.3 kalloc家族
6.2.4 BSD中的内存分配
6.2.5 I/O Kit内存分配
6.2.6 使用C++的new操作符分配内存
6.3 内存描述符
6.3.1 IOBufferMemoryDescriptor
6.3.2 其他的内存描述符
6.4 映射内存
6.4.1 用户空间任务到内核空间的内存映射
6.4.2 IOMemoryMap类
6.4.3 内核到用户空间任务的内存映射
6.4.4 将内存映射到指定的用户空间任务
6.4.5 物理地址映射
6.5 小结


第7章同步和线程
7.1 同步原语
7.2 原子操作
7.3 锁
7.3.1 自旋锁
7.3.2 互斥
7.3.3 条件变量
7.3.4 读/写互斥
7.4 同步异步事件:工作环
7.4.1 IOCommandGate
7.4.2 定时器
7.4.3 释放工作环
7.5 内核线程
7.6 小结


第8章USB
8.1 USB体系结构
8.1.1 USB传输速度
8.1.2 主机控制器
8.1.3 USB协议
8.1.4 端点
8.1.5 USB描述符
8.1.6 USB设备类
8.2 I/O Kit USB支持
8.2.1 USB设备和驱动程序处理
8.2.2 加载USB驱动程序
8.2.3 USB Prober
8.2.4 驱动程序示例:USB大容量存储器设备驱动程序
8.2.5 驱动程序启动
8.2.6 处理设备移除
8.2.7 枚举接口
8.2.8 枚举端点
8.2.9 执行设备请求
8.2.10 执行批量端点和中断端点的I/O
8.3 小结


第9章PCI Express和Thunderbolt
9.1 I/O Kit中的PCI
9.1.1 匹配和加载驱动程序
9.1.2 驱动程序示例:一个简单的PCI驱动程序
9.1.3 访问配置空间寄存器
9.1.4 PCI I/O内存区
9.1.5 处理设备移除
9.2 中断
9.2.1 I/O Kit中断机制
9.2.2 注册接收中断
9.2.3 启用MSI
9.2.4 处理主中断
9.2.5 处理二级中断
9.3 直接内存访问
9.3.1 将物理地址转换为总线地址
9.3.2 为DMA准备内存
9.3.3 建立分散/聚集列表
9.3.4 IODMACommand类
9.4 小结


第10章电源管理
10.1 响应电源状态改变
10.2 请求电源状态改变
10.3 处理设备空闲
10.4 观察设备电源状态改变
10.5 汇总
10.6 小结


第11章串行端口驱动程序
11.1 Mac OS X串行端口体系结构概览
11.2 串行端口驱动程序
11.3 实现IOSerialDriverSync类
11.4 串行端口状态
11.5 串行端口事件
11.6 串行数据传输
11.7 从用户空间访问串行端口
11.8 小结


第12章音频驱动程序
12.1 数字音频和音频设备简介
12.2 Core Audio
12.3 I/O Kit音频支持
12.4 实现一个音频驱动程序
12.4.1 驱动程序和硬件初始化
12.4.2 注册音频控制
12.4.3 实现音频引擎
12.4.4 I/O引擎初始化
12.4.5 其他的音频引擎功能
12.5 小结


第13章网络
13.1 网络内核扩展
13.1.1 内核控制KPI
13.1.2 套接字过滤器
13.1.3 因特网协议过滤器
13.1.4 接口过滤器
13.2 调试和测试网络扩展
13.3 I/O Kit中的网络
13.3.1 构建简单以太网控制器驱动程序
13.3.2 MyEthernetDriver设计
13.3.3 驱动程序初始化和启动
13.3.4 介质和状态选择
13.3.5 配置设备硬件地址
13.3.6 启用和禁用设备
13.3.7 传输网络分组
13.3.8 接收分组
13.3.9 对MyEthernetDriver进行测试
13.4 小结


第14章存储系统
14.1 传输层驱动程序
14.2 IOBlockStorageDevice接口
14.3 构建RAM磁盘设备
14.4 分区规则
14.4.1 实现一个示例分区规则
14.4.2 媒介内容线索属性
14.5 媒介过滤器驱动程序
14.5.1 加密过滤器规则示例
14.5.2 创建一个自定义GUID分区表
14.6 小结


第15章用户空间USB驱动程序
15.1 背景
15.2 IOUSBLib框架
15.3 处理异步操作
15.4 IOUSBDeviceInterface类
15.5 IOUSBInterfaceInterface类
15.5.1 属性方法
15.5.2 端点数据传输方法
15.5.3 低延迟同步传输
15.6 小结


第16章调试
16.1 常见的问题类型
16.2 内核恐慌
16.3 调试机制
16.3.1 启动时修复崩溃
16.3.2 采用IOLog()追踪
16.3.3 输出栈跟踪
16.3.4 通过FireWire远程跟踪
16.3.5 远程内核核心转储
16.3.6 KDB
16.3.7 通过以太网或FireWire使用GDB远程调试
16.3.8 实时调试运行的内核
16.3.9 使用虚拟机调试
16.3.10 在内核中使用GDB调试
16.3.11 使用Activity Monitor诊断挂起进程
16.3.12 查找内存和资源泄漏
16.4 小结


第17章高级内核编程
17.1 内核中的SSE和浮点
17.2 多功能驱动程序
17.3 编写I/O Kit族
17.4 内核控制KPI
17.4.1 内核控制注册
17.4.2 客户端连接
17.4.3 获取和设置选项
17.4.4 从用户空间访问内核控制
17.5 内核中的进程处理
17.6 加载资源
17.7 KEXT资源之外的内容
17.8 内核驱动程序通知
17.9 小结


第18章部署
18.1 安装和加载内核扩展
18.2 加载首选项和设置
18.3 内核扩展的版本管理
18.4 测试和品质保证
18.5 打包KEXT和软件
18.5.1 构建Hello World内核扩展安装包
18.5.2 将内容添加至安装包
18.5.3 配置安装包
18.5.4 构建安装包
18.5.5 卸载安装包
18.6 小结
索引

Introduction

内核开发是一项艰巨的任务,它与传统的用户应用程序开发完全不同。内核开发环境更多变、更复杂。由于任何问题都会对系统的稳定性、安全性及性能造成严重的后果,所以我们必须非常注意,要确保内核代码没有任何错误。本书介绍了内核编程必需的基本知识。从理论和实践两方面讲述了内核开发,并介绍了内核开发的基本概念(如虚拟内存和同步)和更多的实用知识。本书主要面向Mac OS X操作系统,而iOS操作系统也使用XNU内核,因此本书的理论知也适用于iOS操作系统。目前在内核执行环境下进行开发主要是因为需要通过实现设备驱动程序,控制内部或外部的硬件设备。因此,本书着重介绍设备驱动程序开发。在XNU内核中,设备驱动程序开发的主要框架是I/O Kit,我们将详细介绍它。当然,光讲理论是很枯燥的,我们提供了一些能正常运行的代码示例,亲自动手能让你学到更多,你也能从这些示例入手,构建自己的驱动程序。 希望你在阅读本书时充满乐趣,就像我们写作本书时的感觉一样。
本书读者对象
本书面向所有对苹果的iOS和Mac OS X操作系统感兴趣,并且关注内核开发实践的人,特别是驱动程序开发者。不管你是一名爱好者、学生还是专业工程师,我们都希望能为你提供感兴趣的内容。我们在关注内核程序设计和开发的同时,也将介绍许多操作系统技术理论,并详细概述OS X和iOS内核环境。本书的目的是介绍一些必要的知识,帮助你着手开发自己的内核扩展和驱动程序。为此,我们将特别介绍I/O Kit框架,以开发设备驱动程序及其扩展,也将介绍一些基本知识,帮你更深刻地理解I/O Kit和操作系统如何交互。如果你主要对OS X或iOS用户应用程序开发感兴趣,本书可能不适合你。本书不会介绍Cocoa应用程序或其他终端用户应用程序框架的开发。本书讲述的是内核编程主题,如基于苹果的OS X和iOS平台开发驱动程序和内核扩展程序。
读者若有一些操作系统内部构件的知识,将能更好地理解本书内容。如果你学过计算机科学或计算机工程的入门课程,那么你的起点不错。另外,为了理解本书中的例子,你至少要掌握一种编程语言。因为我们重点介绍I/O Kit,它是采用C++语言的子集(称为嵌入式C++)写成的,拥有一些C++语言(至少是C)的经验对充分利用本书将非常有益。本书不会涉及一般的编程主题或理论,将简要介绍一些操作系统基本原理,讲述背景知识以便进一步讨论。
本书结构
下面简要说明本书各章的内容。
第1章,“操作系统原理”。详细介绍操作系统的功能,以及它在管理计算机硬件资源方面所起的作用。描述设备驱动程序的作用及何时需要它,并介绍内核环境编程与标准应用程序开发的不同。
第2章,“Mac OS X和iOS”。概述XNU(Mac OS X和iOS使用的内核)技术框架。
第3章,“Xcode和内核开发环境”。概述苹果公司提供的面向Mac OS X和iOS的开发工具。本章结尾介绍一个简单的“Hello World”内核扩展程序。
第4章,“I/O Kit框架”。介绍为Mac OS X提供驱动程序模型的I/O Kit框架,及其面向对象的体系结构。这部分内容将解释I/O Kit如何找到适合的设备驱动程序去管理一个硬件设备,以一个一般性的设备驱动程序为例来阐述I/O Kit驱动程序的基本结构。
第5章,“应用程序与驱动程序的交互”。解释应用程序代码如何访问内核驱动程序。举例说明如何搜索和匹配一个特定的驱动程序,以及如何安装一个通知以等待驱动程序或特殊设备的到达。还要展示应用程序如何向驱动程序发送命令并等待由驱动程序发送的事件。
第6章,“内存管理”。将概述内核内存管理,以及驱动程序在工作时所需的不同种类的内存。我们描述了物理及内核虚拟内存地址和用户空间内存的不同点,也将向读者介绍内存描述符和内存映射等概念。
第7章,“同步和线程”。将讲述同步的基本原理,以及为什么对每个内核驱动程序来说同步都是必需的。本章将讨论内核锁机制(如IOLock、IOCommandGate)及相应的用法,还将说明在自己的线程、用户空间线程和硬件中断之间,常见的驱动程序如何使用同步机制。本章还将讨论创建内核线程和异步时钟的内核设施。
第8章,“USB”。将为读者介绍USB设备的体系结构,以及驱动程序如何与USB设备协同工作。本章将概述I/O Kit USB API,以及它提供的用于枚举设备和与USB设备之间传送数据的类。本章也将讨论支持设备移除所需的步骤,并通过示例讲述驱动如何枚举管道等资源。
第9章,“PCIExpress和Thunderbolt”。将概述PCI系统架构。本章也将描述PCI驱动程序特有的概念,如内存映射I/O、DMA高速数据传输、设备中断处理等。本章还将概述IOPCIDevice类,它是I/O Kit为了访问和配置PCI设备提供的一个类。本章也将讨论较新的Thunderbolt的相关技术。
第10章,“电源管理”。将描述驱动程序需要实现的支持系统进入低电源状态(如机器休眠)的方法。本章还将讲述高级电源管理,当硬件有一段时间不使用之后,驱动程序可让其进入低电源状态。
第11章,“串行端口驱动程序”。将描述在Mac OS X上如何实现一个串行端口驱动程序。本章将介绍相关的数据结构(如循环队列)和通过阻塞I/O和通知事件来管理数据流的技术。本章也会展示一个用户应用程序如何枚举和访问串行端口驱动程序。
第12章,“音频驱动程序”。将讨论如何使用IOAudioFamily框架开发全系统的音频输入和输出设备;举例说明一个简单的虚拟音频设备,该设备能将它的音频输出复制到音频输入。
第13章,“网络”。将描述如何使用IONetworkingFamily框架实现网络接口。本章也将讲述如何编写一个网络过滤器来过滤、阻塞和修改网络分组。本章最后将介绍一个示例,说明如何编写以太网驱动程序。
第14章,“存储系统”。将介绍在Mac OS X上支持存储设备(如硬盘和CD)的存储器驱动程序。本章将描述各层存储栈上的驱动程序,包括如何写RAM磁盘、分区模式和硬盘加密的过滤器驱动程序。
第15章,“用户空间USB驱动程序”。将介绍在用户应用程序中如何完全实现某些驱动程序。本章将讲述该方法的优点,以及该方法不适用的情况。
第16章,“调试”。将介绍如何调试驱动程序的实践信息,以及常见的问题和易犯的错误。学完本章,读者能够根据内核崩溃报告倒推出自己的代码哪里有问题,这是内核开发人员会经常面临的任务。本章将讨论OS X提供的调试工具(如GDB,即GNU debugger)。
第17章,“高级内核编程”。将分析内核编程中一些更高级的主题,如使用SSE或浮点以及实现高级驱动程序架构。
第18章,“部署”。最后本书将介绍如何向最终用户发布驱动程序。本章将介绍如何使用苹果安装系统进行首次安装和升级。本章包括一些避免常见驱动程序安装问题的实践小技巧。

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