This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Hello1 | |
| { | |
| public static void Main() | |
| { | |
| - System.Console.WriteLine("Hello, World!"); | |
| + System.Console.WriteLine("Rock all night long!"); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let foo = 'bar' | |
| /** | |
| Don't worry about the code block, it will be saved as a gist with right language format, and auto embed to your post. | |
| **/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let foo = 'bar' | |
| /** | |
| Don't worry about the code block, it will be saved as a gist with right language format, and auto embed to your post. | |
| **/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Hello1 | |
| { | |
| public static void Main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Hello1 | |
| { | |
| public static void Main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let foo = 'bar' | |
| /** | |
| Don't worry about the code block, it will be saved as a gist with right language format, and auto embed to your post. | |
| **/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cat /data/anr/traces.txt > /mnt/sdcard/k.txt | |
| exit | |
| adb pull /mnt/sdcard/k.txt k.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.tt; | |
| public class Main { | |
| public static void main(String[] args) { | |
| Object obj = new Object(); | |
| new Thread() { | |
| @Override | |
| public void run() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub 合并当前工作簿下的所有工作表() | |
| Application.ScreenUpdating = False | |
| For j = 1 To Sheets.Count | |
| If Sheets(j).Name <> ActiveSheet.Name Then | |
| X = Range("A65536").End(xlUp).Row + 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sub hebing() | |
| Dim FileOpen | |
| Dim X As Integer | |
| Application.ScreenUpdating = False | |
| FileOpen = Application.GetOpenFilename(FileFilter:="Microsoft Excel文件(*.xlsx),*.xlsx", MultiSelect:=True, Title:="合并工作薄") | |
| X = 1 | |
| While X <= UBound(FileOpen) | |
| Workbooks.Open Filename:=FileOpen(X) | |
| Sheets().Move After:=ThisWorkbook.Sheets(ThisWorkbook.Sheets.Count) |