新手请教一下语法的问题,务必不要见怪~
本人是学C#的,最近想看看C++的书,在MSDN上找了段代码,请好心人解释一下void LockUnlockBitsExample( PaintEventArgs^ e )//PaintEventArgs^ e 这句中^表示什么意思??
{
Bitmap^ bmp = gcnew Bitmap( "c:\\fakePhoto.jpg" );//这里也有个^?
Rectangle rect = Rectangle(0,0,bmp->Width,bmp->Height);//引用对像的属性不是用.吗?怎么是用->吗?.和->有什么区别?
System::Drawing::Imaging::BitmapData^ bmpData = bmp->LockBits//我知道::后面加变量表示全局变量,这里这个表示什么??
( rect, System::Drawing::Imaging::ImageLockMode::ReadWrite, bmp->PixelFormat );
IntPtr ptr = bmpData->Scan0;