⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 matrixtest4.cpp.html

📁 《Big C++ 》Third Edition电子书和代码全集-Part1
💻 HTML
字号:
<html>

<head>
	<title>matrixtest4.cpp</title>
</head>

<body>
<pre>  <font color="#990000">1  #include "matrix4.h"
  2  
  <font color="#009999">3  using std::cout;
  4  namespace mat = BigCPlusPlus_Matrix;</font>
  5  
  6  int main()
  7  {
  8     <font color="#009999">mat::Matrix</font> m(3, 3);
  9     m[0][0] = m[1][1] = m[2][2] = 1;
 10     m[0][1] = m[1][2] = 2;
 11     cout &lt;&lt; 2 * m &lt;&lt; "\n";
 12     cout &lt;&lt; m * m &lt;&lt; "\n";
 13     cout &lt;&lt; 2 * m + m * m;
 14     try
 15     {
 16        m[4][2] = 7; <font color="#000099">// Purposeful subscript error</font>
 17     }
 18     catch (<font color="#009999">mat::Matrix::IndexException&amp;</font> e)
 19     {
 20        cout &lt;&lt; "Caught exception: " &lt;&lt; e.what() &lt;&lt; "\n";
 21     }
 22     return 0;
 23  }</font></pre>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -