- 博客(51)
- 资源 (6)
- 收藏
- 关注
翻译 thinking in java 笔记 3
p.97 foreach syntax Many for statements involve stepping through a sequence of integral values, like this: for(int i = 0; i For these, the foreach syntax won’t work unless you want to create an ar
2016-03-25 15:16:18
356
翻译 Thinking in Java笔记 2
p.43 Special case: primitive types high-precision numbers Java includes two classes for performing high-precision arithmetic: BigInteger and BigDecimal. Although these approximately fit
2016-03-25 14:18:49
309
翻译 Thinking in java 笔记1
源代码地址:www.MindView.net p.19 The hidden implementation private protected: an inheriting class has access to protected members default: package access public
2016-03-18 17:23:21
463
原创 FACEBOOK MARKETING API从v2.4转化为V2.5常用命令
SDK Installations Ads API PHP SDKAds API Python SDK ''' Python Requirements: Easiest way to install the SDK is using pip. ''' #If you don't have pip: easy_install pip #Clone the git
2016-03-01 09:46:29
635
翻译 GoogleAPI Adwords Ad Scheduling
广告安排 广告安排作用于广告系列,使用CampaignCriterionService 。 你不但可以决定一周中的周几和开始时间、结束时间,还有bid modifier(每次都能增加或减少出价) Note:一天小于六个时段 Code examples // Obtain a campaignId you want to configureLong campaignId =
2016-01-29 17:42:41
487
翻译 GoogleAPI Adwords Budget
预算 预算状态: isExplicitlyShared = true, 预算共享 isExplicitlyShared = false, 只能由一个广告系列使用 给广告系列分配预算 新的广告系列: // Get the BudgetService.BudgetServiceInterface budgetService = adWordsServi
2016-01-29 17:21:24
611
翻译 GoogleAPI-Adwords Labels
标签-有效分类广告系列、广告组,广告、关键词 可用于: 1.广告系列只用于一年中的某些时段 2.加了一些新的关键字进广告组,想比较和原关键字的效果 3.一个用户有多个广告系列,用标签来区分广告系列集合 4.Your application needs to mark certain objects as processed, audited, highlighted, etc.
2016-01-28 19:29:46
418
翻译 GoogleAPI-Adwords-Dynamic Search Ads
动态搜索广告不需要关键词,用户进行相关搜索时,会动态产生相关的标题。这是对关键词和已存在的广告系列很好的补充。 实现的三步: 一、确定范围 // Create campaign.Campaign campaign = new Campaign();// ... Set up general campaign parameters ...// Set up DynamicSearchAds
2016-01-28 17:14:33
811
翻译 GoogleAPI-Adwords-Bid Landscapes
Bid Landscapes 类似于 bid simulators in the AdWords user interface bid simulator: 模拟出价。 要求: 已经建立了广告或criterion Conversion Tracking must be enabled. 必须用正式账号,不能用测试账号,因为这是基于以前的正式数据。 实现:
2016-01-28 16:52:03
886
转载 Effective Java Item5-在可以重用对象的时候避免创建对象
Item5 Avoid creating unnecessary objects 避免创建不必要的对象 一般情况下,最好重用功能上对等的对象,而不是创建新的对象。重用对象可以提高性能,并且样式良好。如果对象是immutable的(private fields, no setter methods),那么重用起来就比较方便。 不良例子: String name = new String
2016-01-06 09:12:28
351
转载 Effective Java Item3:使用私有构造方法或者枚举类型实现单例(转自sunjavaduke)
Item3 Enforce the singleton property with a private constructor or an enum type 使用私有构造方法或者枚举类型实现单例。 单例(Singleton)是指只实例化一次的类。 单例表示本质上唯一的系统组件,例如文件系统或者窗口管理器。 package com.googlecode.javatips4u.effe
2016-01-05 11:46:41
453
贪吃蛇flash程序源码
2009-12-28
数据库课件 database
2008-10-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅