ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

When a programming language is said to be strongly-typed, Does this imply it's therefore type-safe?

Consider the following C++ code: char *myString = NULL; myString = "some string"; This does not generate an error or warning although "some string" is const. Now if I do: int i =0x; myString[0] = i &0xff; C++ doesn't seem to have a problem with that!

user-image
تم إضافة السؤال من قبل مستخدم محذوف‎
تاريخ النشر: 2018/03/22
مستخدم محذوف‎
من قبل مستخدم محذوف‎

i thinck C++ is typed very safly but still not safe.

المزيد من الأسئلة المماثلة