-4
私はこの三項式をif else式に変換する簡単な方法を探しています。この三項式をif else文に変換するにはどうすればよいですか?
Account account = selection != 1 ? (Account)customer.Saving : (Account)customer.Checking;
私はこの三項式をif else式に変換する簡単な方法を探しています。この三項式をif else文に変換するにはどうすればよいですか?
Account account = selection != 1 ? (Account)customer.Saving : (Account)customer.Checking;
次のように記述することができます:
Account account;
if(selection != 1)
{
account= (Account)customer.Saving
}
else{
account= (Account)customer.Checking;
}
なぜdownvote?私は何か間違って書いたとは思わない。誰がダウン投票したのかを説明してください – kritikaTalwar
'アカウントアカウントを、 if(selection!= 1){account =(Account)customer.Saving} else {account =(Account)customer.Checking; } '...だがなぜ? – Lanorkin
あなたはこれをコーディングしていますか? –
ありがとうございました – user3238526