Software Engineering 2016.6.28 Daily
Today, the feedback from the questionnaire clarifies the direction of improvement. For the part I am responsible for, there are two main areas that need to be improved:
1. Correction of weighted average calculation method
2, to increase the function of similar to the wall, for each student who has prepared or has taken a course, can view the corresponding course of the wall, from which to obtain the students who have taken such courses of advice
According to the demand, the function of increasing the slot is related to the part of network programming, and the programming of C # Network has yet to be learned.
Today, I studied the contents of the C # Multithreading section.
Learn from Blog http://www.jb51.net/article/46234.htm
Http://www.cnblogs.com/csMapx/archive/2011/06/20/2084647.html
Http://www.cnblogs.com/miniwiki/archive/2010/06/18/1760540.html
The following is a test program written after learning:
Static voidMain (string[] args) {Thread Th1=NewThread (PRINTX); Thread Th2=NewThread (print); Th1. Start (); Th2. Start ('y'); while(Th2. ThreadState! =threadstate.stopped) {} console.writeline (); Console.WriteLine (" Done"); Console.readkey (); } Private Static voidPrintx () { for(inti =0; I < -; i++) Console.Write ("x"); } Private Static voidPrintObjectc) { for(inti =0; I < -; i++) Console.Write ("{0}", (Char) c); Thread.Sleep ( +); }
Test program Results
The result of the experiment is that the XY output has been completed for a period of time before it is displayed.
Software Engineering 2016.6.28 Daily