R.Tanaka.Ichiro's Blog

主にC# な話題です

目次

Blog 利用状況

ニュース

VB6でクラス継承

最近、VB6 で開発しています。

VB6 だとクラスが継承できない

んですよね。

なので、C# だと次のように書けるとして、VB6 だとどうしてやろうか悩む訳です。


abstract class Member {
  abstract public int 番号 { get; }
  abstract public string 氏名 { get; }
  public void 自己紹介() {
    MessageBox.Show("会員番号:" + this.番号.ToString() & "\r" + this.氏名 + "です。よろしくね。")
  }
}

class RTanakaIchiro : Member {
  public override int 番号 { return 34; }
  public override string 氏名 { return "R・田中一郎"; }
}


幸い VB6 はインターフェイスが使えるので、IMember としてインターフェイスを定義して、実装は Member クラスをラッピングすることにしました。



[IMember]
Option Explicit
Public Property Get 番号() As Long: End Property
Public Property Get 氏名() As String: End Property
Public Sub 自己紹介(): End Sub

------------
[Member]
Option Explicit
Private m番号 As Long
Private m氏名 As String

Public Property Get 番号() As Long
  番号 = m番号
End Property

Public Property Let 番号(ByVal Value As Long)
  m番号 = Value
End Property

Public Property Get 氏名() As String
  氏名 = m氏名
End Property
Public Property Let 氏名(ByVal Value As String)
  m氏名 = Value
End Property

Public Sub 自己紹介()
  Call MsgBoxCall("会員番号:" & Cstr(番号) & VbCr & 氏名 & "です。よろしくね。")
End Sub

'******************************
'継承するクラスには以下をコピー
'******************************
'Implements IMember
'Private mBase As Member
'
'Private Property Get IMember_番号() As Long
'  IMember_番号 = mBase.Title
'End Property
'
'Private Property Get IMember_氏名() As String
'  IMember_氏名 = mBase.TableName
'End Property
'
'Private Sub IMember_自己紹介()
'  Call mBase.自己紹介()
'End Sub
'
'Private Sub Class_Initialize()
'  Set mBase = New Member
'  mBase.番号 = [値]
'  mBase.氏名 = [値]
'End Sub

------------------
[RTanakaIchiro]

Option Explicit
Implements IMember
Private mBase As Member

Private Property Get IMember_番号() As Long
  IMember_番号 = mBase.Title
End Property

Private Property Get IMember_氏名() As String
  IMember_氏名 = mBase.TableName
End Property

Private Sub IMember_自己紹介()
  Call mBase.自己紹介()
End Sub

Private Sub Class_Initialize()
  Set mBase = New Member
  mBase.番号 = 34
  mBase.氏名 = "R・田中一郎"
End Sub


ちょっと大変ですね。早く、C# の開発に戻りたいものです。

投稿日時 : 2008年1月16日 14:01

Feedback

# re: VB6でクラス継承 2008/01/16 14:26 囚人

>なので、C# だと次のように書けるとして、VB6 だとどうしてやろうか悩む訳です。

ただのサンプルに対して、大真面目に意見すると、
Member と RTanakaIchiro は、クラスとインスタンスの関係であって、継承関係ではないのでわ。

# re: VB6でクラス継承 2008/01/16 15:14 R・田中一郎

ん?
C# の方のサンプルのことですか?

# re: VB6でクラス継承 2008/01/16 15:16 囚人

言い方が分かりにくかったかも

Member と RTanakaIchiro は、クラスとインスタンスの関係であって、継承関係として適当ではないのでわ。

# re: VB6でクラス継承 2008/01/16 15:35 R・田中一郎

白状すると、VB6 のコードを元に C# のコードを書きましたw

うーん、やっぱり不自然ですよね。
修正しようかな。

# re: VB6でクラス継承 2008/01/16 15:36 じゃんぬねっと

そのために

> 'Implements IMember

というのはあまり意味はないかも。

どうせなら VB6 はインターフェイスといっても実装できちゃう (実際はクラス モジュールだしw) ので、それを利用して継承もどきはできると思う。

# re: VB6でクラス継承 2008/01/16 15:46 R・田中一郎

と言う訳で修正しました。

>どうせなら VB6 はインターフェイスといっても実装できちゃう (実際はクラス モジュールだしw) ので、それを利用して継承もどきはできると思う。

あっ、何か、そんなネタありましたね。
すっかり忘れてました。
やってみよう。

# It is actually a great and useful piece of information. I'm happy that you simply shared this useful info with us. Please stay us up to date like this. Thanks for sharing. 2018/10/05 7:27 It is actually a great and useful piece of informa

It is actually a great and useful piece of information. I'm happy
that you simply shared this useful info with us.
Please stay us up to date like this. Thanks for sharing.

# Article writing is also a fun, if you know afterward you can write otherwise it is complex to write. 2019/04/09 7:52 Article writing is also a fun, if you know afterwa

Article writing is also a fun, if you know afterward you
can write otherwise it is complex to write.

# Heya i am for the primary time here. I came across this board and I to find It truly useful & it helped me out a lot. I am hoping to give one thing again and aid others like you helped me. 2019/05/12 1:07 Heya i am for the primary time here. I came across

Heya i am for the primary time here. I came across this board and I to
find It truly useful & it helped me out a lot. I am hoping to give one thing again and aid others like you helped me.

# Heya i'm for the first time here. I found this board and I find It really useful & it helped me out much. I hope to give something back and aid others like you aided me. 2019/08/15 9:14 Heya i'm for the first time here. I found this bo

Heya i'm for the first time here. I found this board and
I find It really useful & it helped me out much. I hope
to give something back and aid others like you aided me.

# Heya i'm for the first time here. I found this board and I find It really useful & it helped me out much. I hope to give something back and aid others like you aided me. 2019/08/15 9:15 Heya i'm for the first time here. I found this bo

Heya i'm for the first time here. I found this board and
I find It really useful & it helped me out much. I hope
to give something back and aid others like you aided me.

# Heya i'm for the first time here. I found this board and I find It really useful & it helped me out much. I hope to give something back and aid others like you aided me. 2019/08/15 9:16 Heya i'm for the first time here. I found this bo

Heya i'm for the first time here. I found this board and
I find It really useful & it helped me out much. I hope
to give something back and aid others like you aided me.

# Heya i'm for the first time here. I found this board and I find It really useful & it helped me out much. I hope to give something back and aid others like you aided me. 2019/08/15 9:17 Heya i'm for the first time here. I found this bo

Heya i'm for the first time here. I found this board and
I find It really useful & it helped me out much. I hope
to give something back and aid others like you aided me.

# re: VB6?????? 2021/08/07 15:24 what is hydroxychloroquine

is chloroquine an antibiotic https://chloroquineorigin.com/# what does hydroxychloroquine do

# ivermectin brand name http://stromectolabc.com/
stromectol for sale 2022/02/08 3:28 Busjdhj

ivermectin brand name http://stromectolabc.com/
stromectol for sale

# ivermectin 1 topical cream http://stromectolabc.com/
ivermectin ebay 2022/02/08 10:14 Busjdhj

ivermectin 1 topical cream http://stromectolabc.com/
ivermectin ebay

# xrxxktwwkcua 2022/05/07 11:34 kpzvty

hydroxychloroquine https://keys-chloroquinehydro.com/

# prednisone 1 tablet https://prednisone20mg.icu/ 2022/10/15 7:01 Prednisone

prednisone 1 tablet https://prednisone20mg.icu/

# pof login online https://topdatingsites.fun/
connecting singles dating site 2022/11/14 17:06 DatingTop

pof login online https://topdatingsites.fun/
connecting singles dating site

# prednisone 10mg canada https://prednisone20mg.site/
prednisone 250 mg 2022/11/15 10:52 Prednisone

prednisone 10mg canada https://prednisone20mg.site/
prednisone 250 mg

# beste dating site https://datingonlinehot.com/
single women dating 2022/12/09 11:46 Dating

beste dating site https://datingonlinehot.com/
single women dating

# best erection pills https://edpills.science/
ed pills 2023/01/07 8:23 EdPills

best erection pills https://edpills.science/
ed pills

# dating dating https://datingonline1st.com/
mature interracial dating 2023/01/17 17:27 Dating

dating dating https://datingonline1st.com/
mature interracial dating

# what does over the counter mean https://overthecounter.pro/# 2023/05/08 12:50 OtcJikoliuj

what does over the counter mean https://overthecounter.pro/#

# Free crypto signals are often provided by independent traders and financial analysts who have an expertise in the cryptocurrency market. They provide accurate and timely signals to help people make informed investment decisions. These experienced traders 2023/05/22 11:14 Free crypto signals are often provided by independ

Free crypto signals are often provided by independent traders and financial analysts who have an expertise in the
cryptocurrency market. They provide accurate and timely signals to
help people make informed investment decisions. These experienced traders carry out exhaustive market research and analyse different
statistical data to generate the signals.

btcusd signals telegram

# buy ed pills online https://edpillsotc.store/# - best treatment for ed 2023/10/07 16:00 EdPills

buy ed pills online https://edpillsotc.store/# - best treatment for ed

# generic plavix https://plavix.guru/ plavix best price 2023/10/23 16:43 Plavixxx

generic plavix https://plavix.guru/ plavix best price

# buy valtrex 1000 mg https://valtrex.auction/ how to get valtrex in mexico 2023/10/24 11:29 Valtrex

buy valtrex 1000 mg https://valtrex.auction/ how to get valtrex in mexico

# buy doxycycline without prescription https://doxycycline.forum/ doxycycline prices 2023/11/25 3:46 Doxycycline

buy doxycycline without prescription https://doxycycline.forum/ doxycycline prices

# farmacia online https://farmaciait.pro/ acquistare farmaci senza ricetta 2023/12/04 3:40 Farmacia

farmacia online https://farmaciait.pro/ acquistare farmaci senza ricetta

タイトル
名前
Url
コメント