다음 코드를 고려하십시오이와 같이 문자열의 내용을 변경하면 예외가 발생해야합니까?
using System;
using System.Runtime.InteropServices;
namespace Demo
{
class Program
{
static void Main(string[] args)
{
const string test = "ABCDEF"; // Strings are immutable, right?
char[] chars = new StringToChar{str=test}.chr;
chars[0] = 'X';
// On an x32 release or debug build or on an x64 debug build,
// the following prints "XBCDEF".
// On an x64 release build, it prints "ABXDEF".
// In both cases, we have changed the contents of 'test' without using
// any 'unsafe' code...
Console.WriteLine(test);
}
}
[StructLayout(LayoutKind.Explicit)]
public struct StringToChar
{
[FieldOffset(0)]
public string str;
[FieldOffset(0)]
public char[] chr;
}
}
이 코드를 실행함으로써을, 우리는 예외로 발생하지 않고 문자열의 내용을 변경 할 수 있습니다. 안전하지 않은 코드를 선언 할 필요가 없었습니다. 이 코드는 분명히 매우 위험합니다!
제 질문은 단순히 다음과 같습니다. 위 코드에서 예외를 발생시켜야한다고 생각합니까?
[EDIT1 참고 : 다른 사람들은 날 위해 시도하고, 어떤 사람들은 다른 결과를 얻을 - 너무 ... 내가 뭘하는지의 nastyness 주어 놀라운 일하지 않는)]
을 [ EDIT2 : 나는 윈도우 7 얼티밋 64 비주얼 스튜디오 2010을 사용하고 있습니다 비트]
[EDIT3 : 테스트 문자열 CONST 그냥 만들기 위해 만들어진 것이 더 사기]
[질문에 이미 질문했습니다] (http://stackoverflow.com/questions/792735/why-does-this-code-work-without-the-unsafe-keyword) :-) –
매우 흥미 롭습니다! 이것은 잘 알려진 문제인 것처럼 보입니다. –