スポンサード リンク
Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:
コンパイルエラーメッセージ:
error C2255: 'friend': クラス定義外では使用できません
ソース(バグ有り):
#include <mbstring.h> #include <stdio.h> int main() { |
ソース(修正済み):
#include <mbstring.h> #include <stdio.h> int main() { |
スポンサード リンク