warning CS0108: ‘method()’ hides inherited member ‘parent-method()’. Use the new keyword if hiding was intended.
社員同士のゆるーい情報交換ブログです
キングジムの名機、ポメラですが起動画面から先に進まなくなることがあります。
その場合の対策
1.電池を抜く
2.背面のリセットボタンを押す
3.電池の交換(起動画面がハッキリ出ているのに、電池不足になっていることがあるのが罠。)
1 |
Vagrant was unable to mount VirtualBox shared folders. |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$ vagrant up Bringing machine 'default' up with 'virtualbox' provider... (略) default: Guest Additions Version: 5.0.6 default: VirtualBox Version: 6.0 ==> default: Mounting shared folders... default: /mnt/fuelphp => /Users/username/sharedir Vagrant was unable to mount VirtualBox shared folders. This is usually because the filesystem "vboxsf" is not available. This filesystem is made available via the VirtualBox Guest Additions and kernel module. Please verify that these guest additions are properly installed in the guest. This is not a bug in Vagrant and is usually caused by a faulty Vagrant box. For context, the command attempted was: |
原因
書籍『土日でわかるPHPプログラミング教室』の donichi_samplesource_ver2.0.zip で発生しました。
それ以外のZIPは展開できたんですけど、これはエラーが出ました。
Kotlinにて
Null can not be a value of a non-null type String
原因 StringはNullableでない(Null許容していない)のにNullを入れようとした
“エラー対策 Null can not be a value of a non-null type String” の続きを読む