中の技術日誌ブログ

C#とC++/CLIと
VBと.NETとWindowsで戯れる
 

目次

Blog 利用状況

ニュース

自己紹介

東京でソフトウェアエンジニアをやっています。
お仕事大募集中です。
記事執筆や、講師依頼とかでも何でもどうぞ(*^_^*)
似顔絵 MSMVPロゴ
MSMVP Visual C# Since 2004/04-2013/03

記事カテゴリ

書庫

日記カテゴリ

00-整理

01-MSMVP

何回も口がすっぱくなるまで言うがis演算子は使ってはいけない。

やりたいことの意味では等価なコードが2つある。

private static void NewMethod()
{
    object o = new object();
    string s = o as string;
    if (s != null)
    {
        string s2 = s;
    }
}
private static void NewMethod2()
{
    object o = new object();
    if (o is string)
    {
        string s2 = (string)o;
    }
}

だがこの2つには大きな違いがある。

以下のILを比較してほしい。

.method private hidebysig static void NewMethod() cil managed
{
    .maxstack 2
    .locals init (
        [0] object o,
        [1] string s,
        [2] string s2,
        [3] bool CS$4$0000)
    L_0000: nop 
    L_0001: newobj instance void [mscorlib]System.Object::.ctor()
    L_0006: stloc.0 
    L_0007: ldloc.0 
    L_0008: isinst string
    L_000d: stloc.1 
    L_000e: ldloc.1 
    L_000f: ldnull 
    L_0010: ceq 
    L_0012: stloc.3 
    L_0013: ldloc.3 
    L_0014: brtrue.s L_001a
    L_0016: nop 
    L_0017: ldloc.1 
    L_0018: stloc.2 
    L_0019: nop 
    L_001a: ret 
}

 .method private hidebysig static void NewMethod2() cil managed
{
    .maxstack 2
    .locals init (
        [0] object o,
        [1] string s2,
        [2] bool CS$4$0000)
    L_0000: nop 
    L_0001: newobj instance void [mscorlib]System.Object::.ctor()
    L_0006: stloc.0 
    L_0007: ldloc.0 
    L_0008: isinst string
    L_000d: ldnull 
    L_000e: cgt.un 
    L_0010: ldc.i4.0 
    L_0011: ceq 
    L_0013: stloc.2 
    L_0014: ldloc.2 
    L_0015: brtrue.s L_0020
    L_0017: nop 
    L_0018: ldloc.0 
    L_0019: castclass string
    L_001e: stloc.1 
    L_001f: nop 
    L_0020: ret 
}

NewMethod2になく、NewMethodにあるコードが1つある。

スタック宣言(s用)がそれだ。しかし、これはスタックなので大したことはない。

NewMethodになく、NewMethod2にあるコードが1つある。

ここにcastclassオプコードがある。

http://msdn2.microsoft.com/ja-jp/library/system.reflection.emit.opcodes.castclass(vs.80).aspx

ちなみにasもisも実体としてはisinstオプコードに変換されているので、ほぼ等価である。

http://msdn2.microsoft.com/ja-jp/library/system.reflection.emit.opcodes.isinst(vs.80).aspx

isinstの説明をよく読むと

class を実装している場合 (class がインターフェイスの場合)、または class の派生クラスの場合 (class が通常のクラスの場合) は、Castclass が呼び出された場合とまったく同様に、このクラスは class 型にキャストされ、その結果がスタックにプッシュされます。それ以外の場合は、null 参照がスタックにプッシュされます。オブジェクト参照自体が null 参照である場合は、isinst が同様に null 参照を返します。

castclassの説明には

新しいクラスの派生クラスでもない場合は、InvalidCastException がスローされます。

要はCastclassとおなじことをして、castclassでは変換できない場合にはInvalidCastExceptionを出すけど、nullがスタックにプッシュされるよと書かれています。

2回同じことをしているわけです。

このあたりはEssential .NETに詳しく書かれているので、そこを当たるとよい。動的に確保している継承ツリーを追っかけて、型変換可能かどうかを調べるので、遅い。

ちなみに例外がある。

C++/CLIでのstatic_cast()は、コード上になにも影響を与えない本当のキャストなので、パフォーマンス上の劣化はない。

このあたりは拙著 実践C++/CLIでも触れているので参照してほしい。

投稿日時 : 2007年7月10日 23:41

コメントを追加

# re: 何回も口がすっぱくなるまで言うがis演算子は使ってはいけない。 2007/07/11 0:18 NyaRuRu

うーんと,よくわからないのですが要するに「遅いから使うな」ということで良いのでしょうか?
まあ必要のない箇所で無理に使う必要はないと思いますが……
値型などへは as が使えないので,判定のみを is で行いたいという状況は普通にあるかと思いますが,「is 禁止」みたいに憶えちゃう人がいると混乱しませんかねぇ?

ちなみに C# のキャスト構文はアンボクシングにも使われるので,castclass opcode が常に使われるわけではありません.
むしろ generics などの絡みで,.NET 2.0 以降は
unbox.any opcode が非常に使い勝手が良いです.
一応ご参考までに.

static public T MyCast<T>(object o)
{
return (T) o; // unbox.any
}

http://msdn2.microsoft.com/ja-jp/library/system.reflection.emit.opcodes.unbox_any(vs.80).aspx

# re: 何回も口がすっぱくなるまで言うがis演算子は使ってはいけない。 2007/07/11 0:32 中博俊

asでもisでもいい場面で、as vs is+castの組み合わせだけの場合ですね。
>ちなみに C# のキャスト構文はアンボクシングにも使われるので,castclass opcode が常に使われるわけではありません.
もちろんそうですが、漏れてますね。(^^;;

# re: 何回も口がすっぱくなるまで言うがis演算子は使ってはいけない。 2007/07/11 11:53 黒龍

asが使えるケースでisを使う理由が無いということですね。Essential.NETの箇所は失念してました。

# http://burberry.2096909555.com/burberry-sunglasses-burberry-sunglasses-for-men-and-women-aaa14-p-413.html 2012/10/27 20:23 burberry sunglasses burberry sunglasses for men an

The two brothers look very much alike.If only I could fly.I decline!You're suffering from an allergy? Not bad.I heard that you're getting marriedI heard that you're getting marriedThe sun comes up in the east.This car is in good condition.Here is my card
burberry sunglasses burberry sunglasses for men and women aaa14 http://burberry.2096909555.com/burberry-sunglasses-burberry-sunglasses-for-men-and-women-aaa14-p-413.html

# http://burberry.suppa.jp/ 2012/11/06 18:07 バーバリー バッグ

匿名なのに、私には誰だか分かる・・・(^_^;)ありがとう。。。

# promonclersale.webs.com/ 2012/12/04 0:21 http://promonclersale.webs.com/

The salve will heal slight burns.Have fun!As soon as possible!It is clear that the cat has eaten it!You can get what you want.But who will do all the house work? But I plan to weed the yard today.Of course!Come on.I have a large collection of CDs.

# Burberry Outlet 2013/03/16 11:06 http://www.evd.com.tr/burberry.html

It was a lazy, breezy autumn afternoon.This boy has no job.I have no idea.The book is protected by copyright.Move out of my way!I will love you until the seas run dry and the rocks crumble.I will love you until the seas run dry and the rocks crumble.I was taking care of Sally.She is a composer for the harp.Is that why you don't want to go home?

# Oakley Sunglasses Cheap 2013/03/17 21:09 http://oakleyfrogskins2.cabanova.com/

A wet road is usually slippery.You should learn these words by heart.I feel like eating an ice-cream.She spent a lot of money on books.East,west,home is best.We enjoyed driving along the new expressway.The wall has ears.How did you do on your test?I owe you for my dinner.No matter what happened, he would not say a word.

# GoifnAkSOECcqrS 2014/05/23 13:15 matt

ycQt1g http://www.QS3PE5ZGdxC9IoVKTAPT2DBYpPkMKqfz.com

# ulOCQkJXTJmeTOW 2014/06/17 5:11 Sofia

What do you study? http://www.therenewablerepublic.com/expertise-affiliates/ hydroxyzine 25mg contains information to assist the pharmacist in further

# mWTwtmWDurz 2014/06/18 9:38 William

I can't get a dialling tone http://yarinareth.net/about/ cost abilify June 2008 4.2.2 Eligibility Verification Accepted

# tqAqVYnqqKyBeCcG 2014/06/19 9:45 Jesus

Children with disabilities http://www.kavosbay.com/agia-marina/ voltaren 75 mg Non-ECCA authorizations. ± c(C apture (field 112-AN)

# wNXQFDOiVksuisIhb 2014/06/20 23:17 greenwood

A company car http://fanfaremedia.co.uk/about/ metronidazole generic for flagyl satisfying Nuclear Regulatory Commission (NRC) requirements to qualify as an ANP. This

# hMcKvkcBXPvGRty 2014/06/22 12:20 Ella

Which year are you in? http://birgitengelhardt.de/impressum/ cytotec 100 mg all the required NCPDP claims submission fields. Claims should be mailed to the

# SkRPbfNRvnmfrYo 2014/06/23 7:10 Liam

I want to report a http://www.gpd.com/attorneys/ purchase provera online accountability, responsibility, with a patient with needs

# jAsXlkXjQRtnZHlq 2014/07/06 18:44 Stephanie

Where do you come from? http://mutantfilm.com/mov can i buy ventolin over the counter specialty Drug Program (sDP) 36

# vurgYJhEMGZMVyJDkvA 2014/07/08 2:11 Luke

Is there ? http://www.acteon-environment.eu/competences/ accutane 2nd month breakout locator cards must be completed on all patients at the time of initial encounter or

# BdjOHzldgqeilsSpBY 2014/07/08 20:46 Kylie

Best Site good looking http://www.mypetstop.co.uk/legal/ zopiclone cheap are listed in the DME MMIS Provider Manual and are further

# jtBzjaKDmwifkE 2014/07/10 1:34 Valeria

Do you need a work permit? http://www.video-to-flash.com/video_to_flv/ generic clonazepam 93 832 on a month-to-month basis.

# ArCwYidGxmkoTpBw 2014/07/10 23:45 Nicholas

Looking for work http://www.diversityconsulting.es/ongs/ cheap diflucan no prescription Review (acute care and community care)

# yrfTSzIqbdCsoROhUqs 2014/07/12 5:52 goodsam

Thanks for calling http://cristianoweb.net/projeto/foca-no-trabalho/ retail price ventolin hfa inhaler represents the minimum course outcomes and objectives. Preceptors can

# BZIeZDylFwdzwypv 2014/07/13 3:31 Kylie

Gloomy tales http://drosmar.band.uol.com.br/tag/medicina-esportiva/ terbinafine discount The following forms/templates should be included as appendices where applicable. State how each should be completed and by whom:

# GykWlqIgXrdMz 2014/07/13 11:00 Henry

A Second Class stamp http://www.oestrangeiro.net/esquizoanalise there generic naprosyn into the MEVS host processor.

# YnYWBCnfInwqehkXDS 2014/07/14 8:26 Audrey

very best job http://www.cogniteq.com/news/2011 motrin coupon Performs all duties and tasks in accordance with legal and professional

# ThdpzspyhUUtH 2014/07/15 2:41 Lucky

I have my own business http://skytemple.com/who topamax cost in canada softer targets such as hotels, beach resorts, prominent public places, and landmarks. In

# QsahBNhbzbtBsJ 2014/07/15 9:55 Nevaeh

Hold the line, please http://www.imperialsoft.com.pk/seo-services topamax joint promotion and focus on

# OFsHbweUGuvkoS 2014/07/15 19:44 Mya

When can you start? http://www.pulselearning.com/company/careers/ generic tretinoin vs retin-a micro disease states. Describe the

# eZrvcatEIm 2014/07/16 0:47 Haley

Please wait http://colorjar.com/terms-and-conditions/ albuterol with ipratropium request, information necessary to allow PHPto timely respond to a request by an

# WiUiDjbAVtjTjDm 2014/07/16 15:14 Jane

Do you know each other? http://exnecambridge.com/about/ buy ventolin evohaler online The signature of the receiving pharmacist

# GNfPfeUvjHmqfIsg 2014/07/17 5:35 Andrew

Special Delivery http://www.cjpn.ca/a-propos/ order generic abilify technologies in accordance timely drug information

# dqUGTGEOcZj 2014/07/17 12:51 Wyatt

Where do you live? http://ffcm.org/compliance-man-main/ much does abilify cost without insurance should be in the format MM/DD/YY.

# amiVAIbUhHMazy 2014/07/17 21:10 Julia

I like watching TV http://milfamily.org/flyer/ doxycycline hyclate 100 mg 6. The pharmacist must provide learning experiences that stress the responsible provision of

# MivtUPjBkmShZlFjg 2014/07/19 0:55 Wyatt

I don't like pubs http://www.spinomix.com/Legal-Statement tretinoin gel your money carefully as pickpockets like to hang around the banks. Large amounts of money, airplane tickets and

# AKdmQNIgzugaO 2014/07/19 8:11 Diva

I'm doing an internship http://svdx.org/ceo-message/ retin - a micro gel .1 no prescription The interns hair, personal hygiene and use of fragrances should be appropriate for the

# XjdXdgKlEQmx 2014/07/20 19:55 Amia

I wanted to live abroad http://www.webstrategen.be/diensten/ buy generic amoxil 2. Code 050 will be returned if your

# gyojWUhtgvzDYHSJVv 2014/07/21 2:55 Diego

I've been made redundant http://forestvilleec.org/eligibility/ order desyrel online beginning of each year. Housing will be the responsibility of the student. Students are encouraged to consider housing

# wbxmRrnVVKemLYrDg 2014/07/22 14:17 Anna

What's your number? http://www.clwindsor.org/about-us price of benicar PerformRx, in accordance with the Centers for Medicare & Medicaid Services (CMS)

# cAFRZgjwWEVrlUXVRMB 2014/07/22 21:31 Riley

Will I have to work shifts? http://deadfishcafe.com/about/ betamethasone sodium necessary but insufficient reason for either institution to continue in the partnership.

# yIpOShyRtCw 2014/07/24 17:42 Kayla

We're at university together http://demilovato.com/bio/ orlistat 120mg or Invalid 06000567892 in the first three positions, followed by

# YtTxKJSVmvYdAPOwWD 2014/07/25 0:52 unlove

perfect design thanks http://tasselridge.com/winery/ where to buy orlistat drug How do you know when an adverse event occurs? Standard Not

# AEUQSoRnsDd 2014/07/26 20:50 Aaliyah

What sort of work do you do? http://allstarbreakfast.com/award/ buy misoprostol 200 mcg 3 digit Person Code field. The

# iFIvqgRSTzY 2014/07/27 17:39 Antonio

The United States http://bbgrocerymeatdeli.com/web-specials/ doxycycline 200 mg Further information on the D.0 transaction is available at www.emedny.org by clicking: eMedNYHIPAASupport.

# iQXijafrrhKV 2014/07/29 2:17 Kylie

We've got a joint account http://tandimwines.com/about/ finpecia 1 mg 1.3. Formulate evidence-based, patient-specific medication treatment plans

# JKbqMPqCpveHH 2014/07/29 23:44 Makayla

Another service? http://ccsolar.net/solar/ glucophage mg check for to check for check for compatibility and for compatibility

# cdGMoYVBnrKefKIExVE 2014/08/02 13:11 Tilburg

I'm self-employed http://www.nuffield.ie/sponsors/aurivo purchase domperidone code or HCPCS CODE).

# kuBwboRVtDGtW 2014/08/04 9:16 Alejandro

Are you a student? http://www.ericbourret.com/exhibition/ buy cheap cyproheptadine by availability, program requirements and available resources. Students will be asked to

# IJQyeZohyNKNxjDJ 2014/08/11 12:31 cooler111

I'm a trainee http://saveryanandethan.com/our-story/ buy clomid online from canada The U.S. position exposes differences with its Gulf ally Saudi Arabia, which had welcomed Mursi's removal and has lavished financial support to the new government. It also raises the question of where Egypt, the second largest recipient of U.S. aid after Israel, could now turn for more military aid.

# kAaDvuUTwschrGb 2014/08/12 11:13 Jessica

The line's engaged http://apmc.ie/membership/ escitalopram clonazepam z should do if this is all a pack of lies. Sue. File a grievance against the Yankees through his union and sue everybody in sight. Albert Pujols says he is going to sue because Jack Clark said he used steroids. A lot of people make that threat.

# BjdsDgKiyAkrXRqiohT 2014/08/20 20:54 Jozef

I want to make a withdrawal http://www.utecreekcattlecompany.com/bout avapro tablets Within 120 days of the effective date for the buyout, investors who exercised their appraisal rights are entitled to receive a statement from Dell on the number of other investors that also took the same route. The Delaware Chancery Court would then hold hearings to determine the fair value of Dell common shares, and Dell would be required to pay that amount, plus interest, once the court reaches a decision. The final amount could be more or less than what Michael Dell is paying through the buyout with Silver Lake.

# YFMaQgzvzXA 2014/09/22 20:35 Stephanie

I need to charge up my phone http://buyventolin.info/ ventolin evohaler W 2 Precaution. The risk/benefit of therapy should

# ivermectin 5 mg price http://stromectolabc.com/
ivermectin syrup 2022/02/08 16:31 Busjdhj

ivermectin 5 mg price http://stromectolabc.com/
ivermectin syrup

# anti fungal pills without prescription https://withoutprescription.store/
cvs prescription prices without insurance 2022/07/03 3:25 CanadaRx

anti fungal pills without prescription https://withoutprescription.store/
cvs prescription prices without insurance

# prednisone pills 10 mg https://prednisone20mg.icu/ 2022/10/15 13:16 Prednisone

prednisone pills 10 mg https://prednisone20mg.icu/

# christian dating sites https://datingtopreview.com/
plenty of fish 2022/10/17 20:33 Dating

christian dating sites https://datingtopreview.com/
plenty of fish

# prednisone daily https://prednisonepills.site/
prednisone 5 mg brand name 2022/11/28 23:46 Prednisone

prednisone daily https://prednisonepills.site/
prednisone 5 mg brand name

# dating sites free no registration https://datingsiteonline.site/
dating online sites 2022/12/05 23:43 Tading

dating sites free no registration https://datingsiteonline.site/
dating online sites

# ï»¿erectile dysfunction medication https://edpills.science/
best pills for ed 2023/01/07 13:46 EdPills

erectile dysfunction medication https://edpills.science/
best pills for ed

# Cytotec 200mcg price - https://cytotecsale.pro/# 2023/04/28 23:26 Cytotec

Cytotec 200mcg price - https://cytotecsale.pro/#

# over the counter estrogen https://overthecounter.pro/# 2023/05/08 18:11 OtcJikoliuj

over the counter estrogen https://overthecounter.pro/#

# price prescriptions https://pillswithoutprescription.pro/# 2023/05/14 22:08 PillsPresc

price prescriptions https://pillswithoutprescription.pro/#

# best non prescription ed pills https://edpills.ink/# - treatment of ed 2023/07/26 20:01 EdPills

best non prescription ed pills https://edpills.ink/# - treatment of ed

# medication for ed dysfunction https://edpillsotc.store/# - ed pills otc 2023/10/07 21:13 EdPills

medication for ed dysfunction https://edpillsotc.store/# - ed pills otc

# valtrex 1500 mg https://valtrex.auction/ how to order valtrex online 2023/10/24 17:41 Valtrex

valtrex 1500 mg https://valtrex.auction/ how to order valtrex online

# paxlovid generic https://paxlovid.bid/ paxlovid price 2023/10/25 18:24 Paxlovid

paxlovid generic https://paxlovid.bid/ paxlovid price

# prednisone brand name us https://prednisone.bid/ compare prednisone prices 2023/12/27 6:51 Prednisone

prednisone brand name us https://prednisone.bid/ compare prednisone prices

タイトル
名前
URL
コメント