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

疯狂Java讲义精粹(第2版 附CD-ROM光盘1张)

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

疯狂Java讲义精粹(第2版 附CD-ROM光盘1张)

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

《疯狂Java讲义精粹(第2版)》以充满Java编程思想和智慧的《疯狂Java讲义(第3版)》为蓝本,根据院校教学特点粹取精华,帮助读者在短时间内快速掌握Java编程语言;
国内知名IT图书作家、国家奖项得主李刚老师针对Java 8推出的全新升级版;
覆盖Java 8的Lambda表达式、函数式编程、流式编程、并行支持、改进的类型推断、JDBC 4.2等新特性;
800分钟以上视频讲解,海量面试题及答案,数百个书中实例及详实课件,辅助教师提高备课效率;
光盘中附赠《疯狂Workflow讲义》作者杨恩雄老师亲自编写、制作的《Java设计模式(疯狂Java联盟版)》电子书;
额外附赠经典Java开发实例,有助于完成课后习题及独立开发完整项目;
《疯狂Java讲义》系列图书曾被多所“985”“211”院校选做教材或中文推荐参考书。

Content Description

《疯狂Java讲义精粹(第2版)》是《疯狂Java讲义精粹》的第2版,本书相比《疯狂Java讲义》更浅显易懂,讲解更细致,本书同样介绍了Java 8的新特性,本书大部分示例程序都采用Lambda表达式、流式API进行了改写,因此务必使用Java 8的JDK来编译、运行。
本书尽量浅显、直白地介绍Java编程的相关方面,全书内容覆盖了Java的基本语法结构、Java的面向对象特征、Java集合框架体系、Java泛型、异常处理、Java注释、Java的IO流体系、Java多线程编程、Java网络通信编程。覆盖了java.lang、java.util、java.text、java.io和java.nio包下绝大部分类和接口。本书全面介绍了Java 8的新的接口语法、Lambda表达式、方法引用、构造器引用、函数式编程、流式编程、新的日期、时间API、并行支持、改进的类型推断、重复注解、JDBC 4.2新特性等新特性。

Author Description

李刚,十多年软件行业开发从业经验,疯狂软件教育中心教学总监。
疯狂Java实训营创始人,疯狂Java体系原创图书作者。
广东技术师范学院计算机科学系兼职副教授,51CTO专家门诊特邀嘉宾。
培训的学生已在华为、IBM、阿里软件、网易、电信盈科等名企就职。
国内著名高端IT技术作家,已出版《疯狂Java讲义》《疯狂Android讲义》《轻量级Java EE企业应用实战》《疯狂iOS讲义》《疯狂Ajax讲义》《疯狂XML讲义》《经典Java EE企业应用实战》《疯狂HTML 5/CSS 3/JavaScript讲义》《Struts 2.x专业指南》等著作。其中疯狂Java体系图书经多年沉淀,赢得极高的市场认同,多次重印成为超级畅销书,并被多所“985”“211”院校选作教材。部分图书已被翻译成繁体中文版,授权到台湾地区。

Catalogue

第1章 java语言概述与开发环境
1.1 java语言的发展简史
1.2 java程序运行机制
1.2.1 高级语言的运行机制
1.2.2 java程序的运行机制和jvm
1.3 开发java的准备
1.3.1 下载和安装java 8的jdk
不是说jvm是运行java程序的虚拟机吗?那jre和jvm的关系是怎样的呢?
1.3.2 设置path环境变量
为什么不安装公共jre呢?
为什么选择用户变量?用户变量与系统变量有什么区别?
1.4 第一个java程序
1.4.1 编辑java源代码
1.4.2 编译java程序
当编译c程序时,不仅需要指定存放目标文件的位置,也需要指定目标文件的文件名,这里使用javac编译java程序时怎么不需要指定目标文件的文件名呢?
1.4.3 运行java程序
1.4.4 根据classpath环境变量定位类
1.5 java程序的基本规则
1.5.1 java程序的组织形式
1.5.2 java源文件的命名规则
1.5.3 初学者容易犯的错误
1.6 何时开始使用ide工具
我想学习java编程,到底是学习eclipse好,还是学习netbeans好呢?
1.7 本章小结
本章练习
第2章 数据类型和运算符
2.1 注释
2.1.1 单行注释和多行注释
2.1.2 文档注释
api文档是什么?
为什么要学习查看api文档的方法?
2.2 标识符和关键字
2.2.1 分隔符
2.2.2 标识符规则
2.2.3 java关键字
2.3 数据类型分类
什么是变量?变量有什么用?
2.4 基本数据类型
2.4.1 整型
2.4.2 字符型
什么是字符集?
2.4.3 浮点型
2.4.4 数值中使用下画线分隔
2.4.5 布尔型
2.5 基本类型的类型转换
2.5.1 自动类型转换
2.5.2 强制类型转换
2.5.3 表达式类型的自动提升
2.6 直接量
2.6.1 直接量的类型
2.6.2 直接量的赋值
2.7 运算符
2.7.1 算术运算符
2.7.2 赋值运算符
2.7.3 位运算符
2.7.4 扩展后的赋值运算符
2.7.5 比较运算符
2.7.6 逻辑运算符
2.7.7 三目运算符
2.7.8 运算符的结合性和优先级
2.8 本章小结
本章练习
第3章 流程控制与数组
3.1 顺序结构
3.2 分支结构
3.2.1 if条件语句
3.2.2 增强后的switch分支语句
3.3 循环结构
3.3.1 while循环语句
3.3.2 do while循环语句
3.3.3 for循环
3.3.4 嵌套循环
3.4 控制循环结构
3.4.1 使用break结束循环
3.4.2 使用continue忽略本次循环剩下语句
3.4.3 使用return结束方法
3.5 数组类型
3.5.1 理解数组:数组也是一种类型
int[]是一种类型吗?怎么使用这种类型呢?
3.5.2 定义数组
3.5.3 数组的初始化
能不能只分配内存空间,不赋初始值呢?
3.5.4 使用数组
为什么要我记住这些异常信息?
3.5.5 foreach循环
3.6 深入数组
3.6.1 没有多维数组
我是否可以让图3.3中灰色覆盖的数组元素再次指向另一个数组?这样不就可以扩展成三维数组,甚至扩展成更多维的数组吗?
3.6.2 java 8增强的工具类:arrays
3.7 本章小结
本章练习
第4章 面向对象(上)
4.1 类和对象
4.1.1 定义类
构造器不是没有返回值吗?为什么不能用void声明呢?
4.1.2 对象的产生和使用
4.1.3 对象、引用和指针
4.1.4 对象的this引用
4.2 方法详解
4.2.1 方法的所属性
4.2.2 方法的参数传递机制
4.2.3 形参个数可变的方法
4.2.4 递归方法
4.2.5 方法重载
为什么方法的返回值类型不能用于区分重载的方法?
4.3 成员变量和局部变量
4.3.1 成员变量和局部变量
4.3.2 成员变量的初始化和内存中的运行机制
4.3.3 局部变量的初始化和内存中的运行机制
4.3.4 变量的使用规则
4.4 隐藏和封装
4.4.1 理解封装
4.4.2 使用访问控制符
4.4.3 package、import和import static
4.4.4 java的常用包
4.5 深入构造器
4.5.1 使用构造器执行初始化
构造器是创建java对象的途径,是不是说构造器完全负责创建java对象?
4.5.2 构造器重载
为什么要用this来调用另一个重载的构造器?我把另一个构造器里的代码复制、粘贴到这个构造器里不就可以了吗?
4.6 类的继承
4.6.1 继承的特点
4.6.2 重写父类的方法
4.6.3 super限定
4.6.4 调用父类构造器
为什么我创建java对象时从未感觉到java.lang. object类的构造器被调用过?
4.7 多态
4.7.1 多态性
4.7.2 引用变量的强制类型转换
4.7.3 instanceof运算符
4.8 初始化块
4.8.1 使用初始化块
4.8.2 初始化块和构造器
4.8.3 静态初始化块
4.9 本章小结
本章练习
第5章 面向对象(下)
5.1 java 8增强的包装类
java为什么要对这些数据进行缓存呢?
5.2 处理对象
5.2.1 打印对象和tostring方法
5.2.2 ==和equals方法
上面程序中判断obj是否为person类的实例时,为何不用obj instanceof person来判断呢?
5.3 类成员
5.3.1 理解类成员
5.3.2 单例(singleton)类
5.4 final修饰符
5.4.1 final成员变量
5.4.2 final局部变量
5.4.3 final修饰基本类型变量和引用类型变量的区别
5.4.4 可执行"宏替换"的final变量
5.4.5 final方法
5.4.6 final类
5.5 抽象类
5.5.1 抽象方法和抽象类
5.5.2 抽象类的作用
5.6 java 8改进的接口
5.6.1 接口的概念
5.6.2 java 8中接口的定义
5.6.3 接口的继承
5.6.4 使用接口
5.6.5 接口和抽象类
5.7 内部类
5.7.1 非静态内部类
非静态内部类对象和外部类对象的关系是怎样的?
5.7.2 静态内部类
为什么静态内部类的实例方法也不能访问外部类的实例属性呢?
接口里是否能定义内部接口?
5.7.3 使用内部类
既然内部类是外部类的成员,那么是否可以为外部类定义子类,在子类中再定义一个内部类来重写其父类中的内部类呢?
5.7.4 局部内部类
5.7.5 java 8改进的匿名内部类
5.8 java 8新增的lambda表达式
5.8.1 lambda表达式入门
5.8.2 lambda表达式与函数式接口
5.8.3 方法引用与构造器引用
5.8.4 lambda表达式与匿名内部类的联系和区别
5.8.5 使用lambda表达式调用arrays的类方法
5.9 枚举类
5.9.1 手动实现枚举类
5.9.2 枚举类入门
5.9.3 枚举类的成员变量、方法和构造器
5.9.4 实现接口的枚举类
枚举类不是用final修饰了吗?怎么还能派生子类呢?
5.9.5 包含抽象方法的枚举类
5.10 修饰符的适用范围
5.11 本章小结
本章练习
第6章 java基础类库
6.1 与用户互动
6.1.1 运行java程序的参数
6.1.2 使用scanner获取键盘输入
6.2 系统相关
6.2.1 system类
6.2.2 runtime类
6.3 常用类
6.3.1 object类
6.3.2 objects类
6.3.3 string、stringbuffer和stringbuilder类
6.3.4 math类
6.3.5 threadlocalrandom与random
6.3.6 bigdecimal类
6.4 java 8的日期、时间类
6.4.1 date类
6.4.2 calendar类
6.4.3 java 8新增的日期、时间包
6.5 java 8新增的日期、时间格式器
6.5.1 使用datetimeformatter完成格式化
6.5.2 使用datetimeformatter解析字符串
6.6 本章小结
本章练习
第7章 java集合
7.1 java集合概述
7.2 collection和iterator接口
7.2.1 使用lambda表达式遍历集合
7.2.2 使用java 8增强的iterator遍历集合元素
7.2.3 使用lambda表达式遍历iterator
7.2.4 使用foreach循环遍历集合元素
7.2.5 使用java 8新增的predicate操作集合
7.2.6 使用java 8新增的stream操作集合
7.3 set集合
7.3.1 hashset类
hashcode()方法对于hashset是不是十分重要?
7.3.2 linkedhashset类
7.3.3 treeset类
7.4 list集合
7.4.1 java 8改进的list接口和listiterator接口
7.4.2 arraylist和vector实现类
7.4.3 固定长度的list
7.5 queue集合
7.5.1 priorityqueue实现类
7.5.2 deque接口与arraydeque实现类
7.5.3 linkedlist实现类
7.5.4 各种线性表的性能分析
7.6 java 8增强的map集合
7.6.1 java 8为map新增的方法
7.6.2 java 8改进的hashmap和hashtable实现类
7.6.3 linkedhashmap实现类
7.6.4 使用properties读写属性文件
7.6.5 sortedmap接口和treemap实现类
7.6.6 各map实现类的性能分析
7.7 hashset和hashmap的性能选项
7.8 操作集合的工具类:collections
7.8.1 排序操作
7.8.2 查找、替换操作
7.8.3 同步控制
7.8.4 设置不可变集合
7.9 烦琐的接口:enumeration
7.10 本章小结
本章练习
第8章 泛型
8.1 泛型入门
8.1.1 编译时不检查类型的异常
8.1.2 使用泛型
8.1.3 泛型的"菱形"语法
8.2 深入泛型
8.2.1 定义泛型接口、类
8.2.2 从泛型类派生子类
8.2.3 并不存在泛型类
8.3 类型通配符
8.3.1 使用类型通配符
8.3.2 设定类型通配符的上限
8.3.3 设定类型形参的上限
8.4 泛型方法
8.4.1 定义泛型方法
8.4.2 泛型方法和类型通配符的区别
8.4.3 "菱形"语法与泛型构造器
8.4.4 设定通配符下限
8.4.5 泛型方法与方法重载
8.4.6 java 8改进的类型推断
8.5 擦除和转换
8.6 泛型与数组
8.7 本章小结
第9章 异常处理
9.1 异常概述
9.2 异常处理机制
9.2.1 使用try...catch捕获异常
9.2.2 异常类的继承体系
9.2.3 多异常捕获
9.2.4 访问异常信息
9.2.5 使用finally回收资源
9.2.6 异常处理的嵌套
9.2.7 自动关闭资源的try语句
9.3 checked异常和runtime异常体系
9.3.1 使用throws声明抛出异常
9.4 使用throw抛出异常
9.4.1 抛出异常
9.4.2 自定义异常类
9.4.3 catch和throw同时使用
9.4.4 增强的throw语句
9.4.5 异常链
9.5 java的异常跟踪栈
9.6 异常处理规则
9.6.1 不要过度使用异常
9.6.2 不要使用过于庞大的try块
9.6.3 避免使用catch all语句
9.6.4 不要忽略捕获到的异常
9.7 本章小结
本章练习
第10章 annotation(注解)
10.1 基本annotation
10.1.1 限定重写父类方法:@override
10.1.2 标示已过时:@deprecated
10.1.3 抑制编译器警告:@suppresswarnings
10.1.4 "堆污染"警告与@safevarargs
10.1.5 java 8的函数式接口与@functionalinterface
10.2 jdk的元annotation
10.2.1 使用@retention
10.2.2 使用@target
10.2.3 使用@documented
10.2.4 使用@inherited
10.3 自定义annotation
10.3.1 定义annotation
10.3.2 提取annotation信息
10.3.3 使用annotation的示例
10.3.4 java 8新增的重复注解
10.3.5 java 8新增的type annotation
10.4 编译时处理annotation
10.5 本章小结
第11章 输入/输出
11.1 file类
11.1.1 访问文件和目录
11.1.2 文件过滤器
11.2 理解java的io流
11.2.1 流的分类
11.2.2 流的概念模型
11.3 字节流和字符流
11.3.1 inputstream和reader
11.3.2 outputstream和writer
11.4 输入/输出流体系
11.4.1 处理流的用法
11.4.2 输入/输出流体系
11.4.3 转换流
怎么没有把字符流转换成字节流的转换流呢?
11.4.4 推回输入流
11.5 重定向标准输入/输出
11.6 randomaccessfile
11.7 nio.2
11.7.1 path、paths和files核心api
11.7.2 使用filevisitor遍历文件和目录
11.7.3 使用watchservice监控文件变化
11.7.4 访问文件属性
11.8 本章小结
本章练习
第12章 多线程
12.1 线程概述
12.1.1 线程和进程
12.1.2 多线程的优势
12.2 线程的创建和启动
12.2.1 继承thread类创建线程类
12.2.2 实现runnable接口创建线程类
12.2.3 使用callable和future创建线程
12.2.4 创建线程的三种方式对比
12.3 线程的生命周期
12.3.1 新建和就绪状态
12.3.2 运行和阻塞状态
12.3.3 线程死亡
12.4 控制线程
12.4.1 join线程
12.4.2 后台线程
12.4.3 线程睡眠:sleep
12.4.4 线程让步:yield
12.4.5 改变线程优先级
12.5 线程同步
12.5.1 线程安全问题
12.5.2 同步代码块
12.5.3 同步方法
12.5.4 释放同步监视器的锁定
12.5.5 同步锁(lock)
12.5.6 死锁
12.6 线程通信
12.6.1 传统的线程通信
12.6.2 使用condition控制线程通信
12.6.3 使用阻塞队列(blockingqueue)控制线程通信
12.7 线程池
12.7.1 java 8改进的线程池
12.7.2 java 8增强的forkjoinpool
12.8 线程相关类
12.8.1 threadlocal类
12.8.2 包装线程不安全的集合
12.8.3 线程安全的集合类
12.9 本章小结
本章练习
第13章 网络编程
13.1 网络编程的基础知识
13.1.1 网络基础知识
13.1.2 ip地址和端口号
13.2 java的基本网络支持
13.2.1 使用inetaddress
13.2.2 使用urldecoder和urlencoder
13.2.3 url、urlconnection和urlpermission
13.3 基于tcp协议的网络编程
13.3.1 tcp协议基础
13.3.2 使用serversocket创建tcp服务器端
13.3.3 使用socket进行通信
13.3.4 加入多线程
13.3.5 记录用户信息
13.3.6 半关闭的socket
13.3.7 使用nio实现非阻塞socket通信
13.3.8 使用aio实现非阻塞通信
上面程序中好像没用到④⑤号代码的get()方法的返回值,这两个地方不调用get()方法行吗?
13.4 使用代理服务器
13.4.1 直接使用proxy创建连接
13.4.2 使用proxyselector自动选择代理服务器
13.5 本章小结
本章练习

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