themapisThis,is,Miss,Green怎么读?

Java ZoneOffset类代码示例 - 纯净天空
当前位置: 首页>>代码示例>>Java>>正文 本文整理汇总了Java中org.threeten.bp.ZoneOffset类的典型用法代码示例。如果您正苦于以下问题:Java ZoneOffset类的具体用法?Java ZoneOffset怎么用?Java ZoneOffset使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。ZoneOffset类属于org.threeten.bp包,在下文中一共展示了ZoneOffset类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。示例1: addRecordimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
public void addRecord()
{
if (recordnumber<neednumber)
{
recordnumber++;
have_record_all++;
}
if (recordnumber == neednumber){
//list add days from today to begin
long diff = 0;
LocalDateTime begindatetime=getBeginLocalDate();
LocalDateTime begindate=LocalDateTime.of(begindatetime.getYear(),begindatetime.getMonth(),
begindatetime.getDayOfMonth(),0,0);
diff = LocalDateTime.now().toEpochSecond(ZoneOffset.UTC)-begindate.toEpochSecond(ZoneOffset.UTC);
int diff_int = (int)diff;
Integer day = diff_int/60/60/24;
Log.e("Ken: dif for habits", String.valueOf(diff)+" "+diff+" "+day);
record.add(day);
}
}
开发者ID:AndroidNewbies,项目名称:Sanxing,代码行数:21,代码来源:Habit.java
示例2: fetchLibrariesFromApiAndSaveThemimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Test
public void fetchLibrariesFromApiAndSaveThem() {
OffsetDateTime lastUpdated = OffsetDateTime.of(2016, 1, 1, 0, 0, 0, 0, ZoneOffset.UTC);
when(libraryService.lastUpdated()).thenReturn(Observable.just(lastUpdated));
List<Library> newLibraries = Collections.singletonList(MockLibrary.TEST);
when(disclosureApi.allLibraries(any(), anyInt(), anyInt()))
.thenReturn(Observable.just(newLibraries))
.thenReturn(Observable.just(new ArrayList<>()));
TestSubscriber<List<Library>> testSubscriber = new TestSubscriber<>();
syncLibraries.run()
.toBlocking()
.subscribe(testSubscriber);
verify(disclosureApi).allLibraries(lastUpdated, 1, 50);
verify(libraryService).insertOrUpdate(newLibraries);
testSubscriber.assertReceivedOnNext(Collections.singletonList(newLibraries));
testSubscriber.assertNoErrors();
testSubscriber.assertCompleted();
}
开发者ID:philipphager,项目名称:disclosure-android-app,代码行数:24,代码来源:SyncLibrariesShould.java示例3: callOnErrorIfApiReturnsAnErrorimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Test
public void callOnErrorIfApiReturnsAnError() {
OffsetDateTime lastUpdated = OffsetDateTime.of(2016, 1, 1, 0, 0, 0, 0, ZoneOffset.UTC);
when(libraryService.lastUpdated()).thenReturn(Observable.just(lastUpdated));
Throwable apiError = new Throwable();
when(disclosureApi.allLibraries(any(), anyInt(), anyInt())).thenReturn(
Observable.error(apiError));
TestSubscriber<List<Library>> testSubscriber = new TestSubscriber<>();
syncLibraries.run()
.toBlocking()
.subscribe(testSubscriber);
testSubscriber.assertError(apiError);
}
开发者ID:philipphager,项目名称:disclosure-android-app,代码行数:17,代码来源:SyncLibrariesShould.java
示例4: newInfoimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
protected AccelerationData.Info newInfo(final Materialization materialization) {
final com.dremio.service.accelerator.proto.JobDetails details = materialization.getJob();
final Long jobStart = details.getJobStart();
final Long jobEnd = details.getJobEnd();
final AccelerationData.Info info = new AccelerationData.Info();
if (jobStart != null) {
info.setStart(DateTimeFormatter.RFC_1123_DATE_TIME.format(ZonedDateTime.ofInstant(Instant.ofEpochMilli(jobStart), ZoneOffset.UTC)));
}
if (jobEnd != null) {
info.setEnd(DateTimeFormatter.RFC_1123_DATE_TIME.format(ZonedDateTime.ofInstant(Instant.ofEpochMilli(jobEnd), ZoneOffset.UTC)));
}
if (jobStart != null && jobEnd != null) {
final Duration duration = Duration.ofMillis(jobEnd - jobStart);
info.setDuration(DateTimeFormatter.ISO_LOCAL_TIME.format(LocalTime.MIDNIGHT.plus(duration)));
}
info.setJobId(details.getJobId())
.setInputBytes(details.getInputBytes())
.setInputRecords(details.getInputRecords())
.setOutputBytes(details.getOutputBytes())
.setOutputRecords(details.getOutputRecords());
return info;
}
开发者ID:dremio,项目名称:dremio-oss,代码行数:27,代码来源:DatasetsResource.java示例5: addSessionReminderimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
public void addSessionReminder(@NonNull Session session) {
if (!isEnabled()) {
Timber.d("SessionsReminder is not enable, skip adding session");
return;
}
PendingIntent intent = createSessionReminderIntent(session);
LocalDateTime now = LocalDateTime.now();
LocalDateTime sessionStartTime = session.getFromTime().minusMinutes(3);
if (!sessionStartTime.isAfter(now)) {
Timber.w("Do not set reminder for passed session");
return;
}
Timber.d("Setting reminder on %s", sessionStartTime);
App.setExactAlarm(alarmManager, sessionStartTime.atZone(ZoneOffset.systemDefault()).toInstant().toEpochMilli(), intent);
}
开发者ID:Nilhcem,项目名称:droidconde-2016,代码行数:17,代码来源:SessionsReminder.java
示例6: createFunctionExecutionContextimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
private FunctionExecutionContext createFunctionExecutionContext(final LocalDate valuationTime) {
final FunctionExecutionContext context = new FunctionExecutionContext();
context.setValuationTime(valuationTime.atTime(LocalTime.NOON).toInstant(ZoneOffset.UTC));
context.setValuationClock(DateUtils.fixedClockUTC(context.getValuationTime()));
context.setComputationTargetResolver(
new DefaultComputationTargetResolver(context.getSecuritySource()).atVersionCorrection(VersionCorrection.LATEST));
OpenGammaExecutionContext.setHolidaySource(context, getHolidaySource());
OpenGammaExecutionContext.setRegionSource(context, getRegionSource());
OpenGammaExecutionContext.setConventionBundleSource(context, getConventionBundleSource());
OpenGammaExecutionContext.setConventionSource(context, getConventionSource());
OpenGammaExecutionContext.setSecuritySource(context, new MasterSecuritySource(getSecurityMaster()));
OpenGammaExecutionContext.setHistoricalTimeSeriesSource(context, getHistoricalSource());
OpenGammaExecutionContext.setConfigSource(context, getConfigSource());
OpenGammaExecutionContext.setLegalEntitySource(context, getLegalEntitySource());
return context;
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:17,代码来源:SecurityGenerator.java示例7: toDerivativeNoFixingAfterTradeDateimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Test
/**
* Tests the toDerivative method before the security first fixing date - after trade date.
*/
public void toDerivativeNoFixingAfterTradeDate() {
final ZonedDateTime referenceDate = ScheduleCalculator.getAdjustedDate(TRADE_DATE, 1, NYC);
final ZonedDateTime[] closingDate = new ZonedDateTime[] {TRADE_DATE.minusDays(2), TRADE_DATE.minusDays(1), TRADE_DATE};
final double[] closingPrice = new double[] {0.99895, 0.99905, 0.99915};
final ZonedDateTimeDoubleTimeSeries closingTS = ImmutableZonedDateTimeDoubleTimeSeries.of(closingDate, closingPrice, ZoneOffset.UTC);
final ZonedDateTime[] fixingDate = new ZonedDateTime[] {TRADE_DATE.minusDays(2), TRADE_DATE.minusDays(1), TRADE_DATE};
final double[] fixingRate = new double[] {0.0010, 0.0011, 0.0009};
final ZonedDateTimeDoubleTimeSeries fixingTS = ImmutableZonedDateTimeDoubleTimeSeries.of(fixingDate, fixingRate, ZoneOffset.UTC);
final ZonedDateTimeDoubleTimeSeries[] data = new ZonedDateTimeDoubleTimeSeries[] {fixingTS, closingTS};
final FederalFundsFutureSecurity securityConverted = FUTURE_SECURITY_DEFINITION.toDerivative(referenceDate, fixingTS);
final FederalFundsFutureTransaction transactionExpected = new FederalFundsFutureTransaction(securityConverted, QUANTITY, closingPrice[2]);
final FederalFundsFutureTransaction transactionConverted = FUTURE_TRANSACTION_DEFINITION.toDerivative(referenceDate, data);
assertEquals("Fed fund future transaction definition: toDerivative", transactionExpected, transactionConverted);
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:19,代码来源:FederalFundsFutureTransactionDefinitionTest.java
示例8: createSecurityimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Override
protected ManageableSecurity createSecurity() {
FutureOptionSecurityDefinition defn = getSecurityDefinition();
ExternalId underlyingId = defn.getUnderlyingId().toExternalId();
Expiry expiry = new Expiry(defn.getFutureExpiry().atDay(1).atStartOfDay(ZoneOffset.UTC), ExpiryAccuracy.MONTH_YEAR);
String exchange = defn.getExchange();
Currency currency = defn.getCurrency();
int pointValue = defn.getPointValue();
boolean isMargined = defn.isIsMargined();
double strike = defn.getStrike().doubleValue();
OptionType optionType = defn.getOptionType();
ExerciseType exerciseType = defn.getExerciseType().convert();
switch (defn.getListedFutureOptionType()) {
case EQUITY_INDEX_FUTURE_OPTION:
return new EquityIndexFutureOptionSecurity(exchange, expiry, exerciseType, underlyingId, pointValue,
isMargined, currency, strike, optionType);
case EQUITY_DIVIDEND_FUTURE_OPTION:
return new EquityIndexDividendFutureOptionSecurity(exchange,
expiry, exerciseType, underlyingId, pointValue,
isMargined, currency, strike, optionType);
default:
// The xml validation should prevent this from happening
throw new PortfolioParsingException("Unrecognised listed option type: " + defn.getListedFutureOptionType());
}
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:26,代码来源:ListedFutureOptionSecurityExtractor.java示例9: historySelectedimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
private void historySelected() {
s_logger.warn("history selected");
MarketDataSpecificationComponent outer = MarketDataSpecificationComponent.this;
@SuppressWarnings("unchecked")
JComboBox<String> source = _dataSourceCombo;
String item = (String) source.getSelectedItem();
if (item != null) {
MarketDataSpecification marketDataSpec;
if (_latestRadio.isSelected()) {
marketDataSpec = new LatestHistoricalMarketDataSpecification(item);
validSpecification(marketDataSpec);
return;
} else {
Date datePickerDate = outer._datePicker.getDate();
if (item != null && item.length() > 0 && datePickerDate != null) {
LocalDate localDate = Instant.ofEpochMilli(datePickerDate.getTime()).atZone(ZoneOffset.UTC).toLocalDate();
marketDataSpec = new FixedHistoricalMarketDataSpecification(item, localDate);
validSpecification(marketDataSpec);
return;
}
}
}
invalidSpecification();
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:25,代码来源:MarketDataSpecificationComponent.java示例10: visitEquityTotalReturnSwapSecurityimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Override
public EquityTotalReturnSwapDefinition visitEquityTotalReturnSwapSecurity(final EquityTotalReturnSwapSecurity security) {
ArgumentChecker.notNull(security, "security");
final FinancialSecurity underlying = (FinancialSecurity) _securitySource.getSingle(security.getAssetId().toBundle()); //TODO ignoring version
if (underlying instanceof BondSecurity) {
throw new OpenGammaRuntimeException("Underlying for equity TRS was not an equity");
}
final FloatingInterestRateSwapLeg fundingLeg = security.getFundingLeg();
final boolean isPayer = fundingLeg.getPayReceiveType() == PayReceiveType.PAY ? true : false;
final LocalDate startDate = security.getEffectiveDate();
final LocalDate endDate = security.getMaturityDate();
final NotionalExchange notionalExchange = NotionalExchange.NO_EXCHANGE;
final AnnuityDefinition<? extends PaymentDefinition> annuityDefinition = AnnuityUtils.buildFloatingAnnuityDefinition(_conventionSource, _holidaySource, _securitySource, isPayer,
startDate, endDate, notionalExchange, fundingLeg);
final EquitySecurity equity = (EquitySecurity) underlying;
final LegalEntity legalEntity = getLegalEntityForEquity(equity);
final EquityDefinition equityDefinition = new EquityDefinition(legalEntity, equity.getCurrency(), security.getNumberOfShares());
final ZonedDateTime startDateTime = startDate.atTime(LocalTime.MIN).atZone(ZoneOffset.UTC);
final ZonedDateTime endDateTime = endDate.atTime(LocalTime.MIN).atZone(ZoneOffset.UTC);
return new EquityTotalReturnSwapDefinition(startDateTime, endDateTime, annuityDefinition, equityDefinition, security.getNotionalAmount(),
security.getNotionalCurrency(), security.getDividendPercentage() / 100.);
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:23,代码来源:EquityTotalReturnSwapSecurityConverter.java示例11: convertimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
public InstrumentDefinitionWithData<?, Double> convert(Trade trade) {
ArgumentChecker.notNull(trade, "trade");
final Security security = trade.getSecurity();
if (security instanceof DeliverableSwapFutureSecurity) {
final SwapFuturesPriceDeliverableSecurityDefinition securityDefinition = (SwapFuturesPriceDeliverableSecurityDefinition) ((DeliverableSwapFutureSecurity) security).accept(_securityConverter);
Double tradePrice = trade.getPremium(); // TODO: [PLAT-1958] The trade price is stored in the trade premium.
if (tradePrice == null) {
throw new OpenGammaRuntimeException("Trade premium should not be null.");
}
final LocalDate tradeDate = trade.getTradeDate();
if (tradeDate == null) {
throw new OpenGammaRuntimeException("Trade date should not be null");
}
final OffsetTime tradeTime = trade.getTradeTime();
if (tradeTime == null) {
throw new OpenGammaRuntimeException("Trade time should not be null");
}
final ZonedDateTime tradeDateTime = tradeDate.atTime(tradeTime).atZoneSameInstant(ZoneOffset.UTC);
final int quantity = trade.getQuantity().intValue();
return new SwapFuturesPriceDeliverableTransactionDefinition(securityDefinition, quantity, tradeDateTime, tradePrice);
}
throw new IllegalArgumentException("Can only handle DeliverableSwapFutureSecurity");
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:24,代码来源:DeliverableSwapFutureTradeConverter.java示例12: getTimeSeriesRequirementsimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Override
public Set<ValueRequirement> getTimeSeriesRequirements(final ZeroCouponInflationSwapSecurity security) {
Validate.notNull(security, "security");
final SwapLeg payLeg = security.getPayLeg();
final SwapLeg receiveLeg = security.getReceiveLeg();
final ZonedDateTime swapStartDate = security.getEffectiveDate();
final ZonedDateTime swapStartLocalDate = swapStartDate.toLocalDate().atStartOfDay(ZoneOffset.UTC);
final ValueRequirement payLegTS = getIndexTimeSeriesRequirement(payLeg, swapStartLocalDate);
final ValueRequirement receiveLegTS = getIndexTimeSeriesRequirement(receiveLeg, swapStartLocalDate);
final Set<ValueRequirement> requirements = new HashSet<>();
if (payLegTS != null) {
requirements.add(payLegTS);
}
if (receiveLegTS != null) {
requirements.add(receiveLegTS);
}
return requirements;
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:19,代码来源:FixedIncomeConverterDataProvider.java示例13: test_intersectionFirstValue_selectFirstimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
@Test
public void test_intersectionFirstValue_selectFirst() {
final ZonedDateTimeDoubleTimeSeries dts = createStandardTimeSeries();
final ZonedDateTimeDoubleTimeSeries dts2 = createStandardTimeSeries2();
final ZonedDateTimeDoubleTimeSeries dts3 = ImmutableZonedDateTimeDoubleTimeSeries.builder(ZoneOffset.UTC)
.putAll(dts2).put(dts2.getEarliestTime(), -1.0).build();
final ZonedDateTimeDoubleTimeSeries result1 = dts.intersectionFirstValue(dts3);
assertEquals(3, result1.size());
assertEquals(Double.valueOf(4.0), result1.getValueAtIndex(0));
assertEquals(Double.valueOf(5.0), result1.getValueAtIndex(1));
assertEquals(Double.valueOf(6.0), result1.getValueAtIndex(2));
assertEquals(dts.getTimeAtIndex(3), result1.getTimeAtIndex(0));
assertEquals(dts.getTimeAtIndex(4), result1.getTimeAtIndex(1));
assertEquals(dts.getTimeAtIndex(5), result1.getTimeAtIndex(2));
final ZonedDateTimeDoubleTimeSeries result2 = dts3.intersectionFirstValue(dts);
assertEquals(3, result2.size());
assertEquals(Double.valueOf(-1.0), result2.getValueAtIndex(0));
assertEquals(Double.valueOf(5.0), result2.getValueAtIndex(1));
assertEquals(Double.valueOf(6.0), result2.getValueAtIndex(2));
assertEquals(dts.getTimeAtIndex(3), result2.getTimeAtIndex(0));
assertEquals(dts.getTimeAtIndex(4), result2.getTimeAtIndex(1));
assertEquals(dts.getTimeAtIndex(5), result2.getTimeAtIndex(2));
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:26,代码来源:ImmutableZonedDateTimeDoubleTimeSeriesTest.java示例14: convertimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
public InstrumentDefinitionWithData<?, Double> convert(Trade trade) {
ArgumentChecker.notNull(trade, "trade");
final Security security = trade.getSecurity();
if (security instanceof InterestRateFutureSecurity) {
final InterestRateFutureSecurityDefinition securityDefinition = (InterestRateFutureSecurityDefinition) ((InterestRateFutureSecurity) security).accept(_securityConverter);
Double tradePrice = trade.getPremium(); // TODO: [PLAT-1958] The trade price is stored in the trade premium.
if (tradePrice == null) {
throw new OpenGammaRuntimeException("Trade premium should not be null.");
}
final LocalDate tradeDate = trade.getTradeDate();
if (tradeDate == null) {
throw new OpenGammaRuntimeException("Trade date should not be null");
}
final OffsetTime tradeTime = trade.getTradeTime();
if (tradeTime == null) {
throw new OpenGammaRuntimeException("Trade time should not be null");
}
final ZonedDateTime tradeDateTime = tradeDate.atTime(tradeTime).atZoneSameInstant(ZoneOffset.UTC);
final int quantity = trade.getQuantity().intValue();
return new InterestRateFutureTransactionDefinition(securityDefinition, quantity, tradeDateTime, tradePrice);
}
throw new IllegalArgumentException("Can only handle InterestRateFutureSecurity");
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:24,代码来源:InterestRateFutureTradeConverter.java示例15: createInterestRateFutureTradeimport org.threeten.bp.ZoneOffset; //导入依赖的package包/类
private InterestRateFutureTrade createInterestRateFutureTrade(InterestRateFutureSecurity security,
SimpleCounterparty counterparty,
boolean pass) {
BigDecimal tradeQuantity = BigDecimal.valueOf(10);
LocalDate tradeDate = LocalDate.of(2000, 1, 1);
OffsetTime tradeTime = OffsetTime.of(LocalTime.of(0, 0), ZoneOffset.UTC);
SimpleTrade trade = new SimpleTrade(security, tradeQuantity, counterparty, tradeDate, tradeTime);
trade.setPremium(0.0);
trade.setPremiumCurrency(security.getCurrency());
if (pass) {
trade.addAttribute("TEST", "PASS");
} else {
trade.addAttribute("TEST", "FAIL");
}
return new InterestRateFutureTrade(trade);
}
开发者ID:DevStreet,项目名称:FinanceAnalytics,代码行数:18,代码来源:ExposureFunctionTest.java注:本文中的org.threeten.bp.ZoneOffset类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。
首页>科普2011版八年级英语下册>Section C下载地址内容预览T: Is it
important
for police to
wear uniforms at work?S1:Sure. When they are wearing uniforms, people in trouble can find them.S2:And their uniforms may stop some people from doing bad things.S3:Uniforms can also show good discipline and make them look important.Task1:Read 1a and answer the two questions.1.How many kinds of uniforms are there in the text?2 What are they?studentfirefightersoliderairline pilotpolice officerdoctorofficialTask2:Read 1a again and complete the table.JobUniformPurposestudentto protect themselves from heat and falling ceilingsgreen clothesofficialpilot uniformsto let us know we can get help from themdoctorschool uniformsto show good disciplinefirefighterspecial coats and helmetsto make us believe that they know how to fly the plane《Section C》教学资源[教案] 科普版初中英语《Section C》公开课教学设计下载1.Ask students two questions:(1) What should we wear on differernt occasions?*on the playground*attend a formal meeting*when we are invited to a party*when we enter someone's home in JapanT: It’s?very?important?to?wear?suitable?clothes?on?every?occasion?in?our?daily?life.(2) What should we wear in different seasons?2.Let them play the game “Look and say” to revise jobs and learn some new words.T: In our daily life, we can see many people in uniforms. I have prepared many pictures of uniforms. Let’s play “Look and say”. As soon as you see the picture, you should raise your hand and speak out who wears them.Teach?the?words?firef上传时间:08-09
[课件] 《Section C》课件科普版初中英语制服beautifuluglytidyfashionto show a good disciplinethe school uniformsn. 纪律,风纪n. 纪律,风纪Discuss with your classmates whether students should wear uniforms at school.should, why?shouldn\\\\\\\'t, why?Do you like your uniforms?Do you think we should wear uniforms?Write down your ideas on your paperThey look...on usThey are...They can show...It’s good
to/for...It seems that...It (can) make us look...Let’s share your ideas together.1.should
2.3.1.shouldn’t
2.3.How to solve the problem?v.设计,构思;计划上传时间:07-07
[课件] 科普版《Section C》PPT课件模板八年级下册初中英语n.天花板,顶棚Firefighters wear special coats and helmets to protect themselves from heat and falling ceilings.n.温度;热v.把......加热I. New wordssoldiern.士兵,战士officern.警官,军官,官员airportn.航空站,飞机场1.What are the functions of uniforms?2.How many kinds of uniforms are there in the text? What are they?II.Answer the questions according to the pictures, then read the text to check them.Read 1a again and complete the table.JobUniformPurposestudentto protect themselves from heat and falling ceilingsgreen clothesofficialpilot uniformsto let us know we can get help from themdoctorschool uniformsto show good disciplinefirefig上传时间:06-11
[教案] 初中英语科普版八年级下册《Section C》公开课教案下载(3) 能够根据图表来复述短文。3.
Emotional aims:培养学生的合作精神;培养学生的良好品德,不能以貌取人。Culture awareness:了解制服的社会功能。2学情分析大部分学生有学习目标,学习态度端正 ,学习积极性高,有一定的理解能力和分析判断能力,但基础较薄弱,课上不够积极参与课堂活动 ,开口参与有待加强。3重点难点Ⅱ. The key points and difficult points1. Key points:(1)继续学习宾语从句和it作形式主语的句型。(2) 了解制服所扮演的社会功能。2. Difficult points:(1)本课新词汇较多,句子较长,理解有点困难。(2)短文内容较长,涉及的任务较多,要完成1c的复述,学生会有一定的难度。? ? ? ? ??4教学过程4.1第一学时4.1.1教学活动活动1【导入】Stage 1Warming up: Show the pict上传时间:07-31
[课件] 《Section C》公开课PPT课件科普版初中英语八年级下册(2013年10月第1版 )《Section C》最新PPT课件下载-商丘市优质课上传时间:06-08
[课件] 《Section C》优秀PPT课件八年级下册科普版初中英语(1) 能够根据上下文语境来猜测单词。(2) 能够根据课文插图猜测文章大意。(3) 能够根据图表来复述短文。Emotional aims:能意识到制服在日常生活中的重要性Culture awareness:
了解制服的社会功能。Match the words with the pictures.firefighter
soldier
officer
patienttext
airport
official
ceilingabcdefghdefacgbhFill in the blanks with the correct forms of the words.wearthese
clothes .wearthese
clothes .上传时间:10-30
[教案] 科普版《Section C》优秀教学设计下载八年级下册III. The key and difficult points.议论文思维导图的制作。条理清楚地表述自己的观点。IV. Learning strategies讨论时要记录下自己和别人的观点,为写作任务收集、准备素材。Ⅳ. Teaching aids多媒体课件IV. Teaching procedure.StepsInteraction PattenStudents activityTeachers activityPro-writing1.Whole class work1.Students talk about the functions of different uniforms1. Show some pictures of different jobs to review the functions of their uniforms.2.Some students work2. Students answer some questions about school uniforms.2. Ask some questions.(1) What do you think of your school uniforms?(2).Why do we students wear uniforms.(3)Do you like your u上传时间:07-16
[教案] 科普版八年级下册初中英语《Section C》公开课教案Teaching procedure:Ⅰ.预习展示:翻译下列单词或短语:at the airport____________
in daily life_____________
show good discipline ________________the spread of disease_______________
dress in____________
in one’s opinion_______________what’s more___________坍塌的房顶_______________ 在森林里__________________课文_______
军官________ 病人__________北方的________热__________Ⅱ.合作学习展示:1.Get the Ss to read 1a again and finish 1b in groups then check it together.(Evaluating)2.Finish 1c. The teacher lets students work in groups and discuss different uniforms and
prepare to retell the passage with the help上传时间:06-11
[课件] 科普版《Section C》优秀课件初中英语八年级下册T: Is it
important
for police to
wear uniforms at work?S1:Sure. When they are wearing uniforms, people in trouble can find them.S2:And their uniforms may stop some people from doing bad things.S3:Uniforms can also show good discipline and make them look important.Task1:Read 1a and answer the two questions.1.How many kinds of uniforms are there in the text?2 What are they?studentfirefightersoliderairline pilotpolice officerdoctorofficialTask2:Read 1a again and complete the table.JobUniformPurposestudentto protect themselves from heat and falling ceilingsgreen clothesofficialpilot uniformsto let us know we can get help from themd上传时间:07-26
[课件] 初中英语《Section C》课件模板下载八年级下册科普版firefightern.消防人员a special coata helmetFirefighters wear special coats and helmets to protect themseleves from heat and falling ceilings.ceilingn.天花板,顶棚n.温度;热v.把......加热Soldiern.士兵,战士IrSoldiers wear green clothesto protect themselves in the forestofficialn.警官,军官,官员IrOfficials wear official uniformsto make themselves look importantairportn.航空站,飞机场Airline pilots wear pilot uniformsto make us believe that they knowhow to fly the planeRead 1a and answer the following questionsHow many kinds of uniforms are there in the text?
A. four
B. six
C. seven_________can stop the spread of di上传时间:06-23
查看《Section C》的全部教学资源

我要回帖

更多关于 This,is,Miss,Green怎么读 的文章

 

随机推荐