方法一,使用memset()标准库函数://--- include <iostream> using namespace std;int main(void){ int max;char *p=(char *)&max;memset(p,255,sizeof(int));memset(p+3,127,1);cout<<max;return 0;} //--- 方法二,使用标准预定义宏INT_MAX //---...
packagecom.corejava.chap02;importcom.corejava.chap02.IntBin;publicclassTest {publicstaticvoidmain(String[] args){ IntBin ib=newIntBin(10); ib.display(); System.out.println(IntBin.Max()); System.out.println(IntBin.Min()); } }