【判断题】【消耗次数:1】
阳偏衰的治疗原则,《内经》称为“阳病治阴”().
正确
错误
参考答案:
复制
纠错
➡️如需代学继续教育,联系微信:yizhituziang

相关题目
【单选题】 “阳病治阴”的方法适用于
①  阴偏衰证
②  阳偏衰证
③  阴偏盛证
④  阴阳俱衰证
⑤  阳偏盛证
【单选题】 《内经》认为“阴中有阴,阳中有阳”,体现阴阳下列的哪一特性( )
①  可分性
②  普遍性
③  转化性
④  相关性
⑤  规定性
【判断题】 阳胜则热、阳胜则阴病。
①  正确
②  错误
【判断题】 阳中求阴的治法用于治疗实热证
①  正确
②  错误
【单选题】 “阳胜则阴病”的病机是指
①  阴液亏虚,阳气上逆
②  阳热偏盛,阴寒内生
③  阳热亢盛,热极生寒
④  阳热亢盛,外感寒邪
⑤  阳热亢盛,损伤阴液
【单选题】 重阴必阳的病机是指
①  由阳转阴
②  阴损及阳
③  阴盛格阳
④  由阴转阳
⑤  阳盛格阴
【单选题】 初治菌阳/或菌阴结核的推荐治疗方案是( )
【判断题】 阴在内,阳之守也;阳在外,阴之使也。
①  正确
②  错误
【判断题】 阳胜则阴病,是指阳气充沛,阴精被抑制。
①  正确
②  错误
【判断题】 阴胜则阳病,是指阴精充盛,阳气被抑制。
①  正确
②  错误
随机题目
【单选题】 自定义异常时,可以通过对下列哪一项进行继承?( )
①  Error 类
②  Applet 类
③  Exception 类及其子类
④  AssertionError 类
【单选题】 下列说法中,错误的一项是( )。
①  线程就是程序
②  线程是一个程序的单个执行流
③  多线程是指一个程序的多个执行流
④  多线程用于实现并发
【单选题】 运行下面程序时,会产生什么异常?( ) public class X7_1_4 { public static void main(String[] args) { int x = 0; int y = 5/x; int[] z = { 1,2,3,4 } ; int p = z[4]; } }
①  ArithmeticException
②  NumberFormatException
③  ArrayIndexOutOfBoundsException
④  IOException
【单选题】 下列说法中错误的一项是( )。
①  MouseAdapter 是鼠标运动适配器
②  WindowAdapter 是窗口适配器
③  ContainerAdapter 是容器适配器
④  KeyAdapter 是键盘适配器
【单选题】 已知有定义:String s=I love,下面哪个表达式正确?( )
①  s += you;
②  char c = s[1];
③  int len = s.length;
④  String s = s.toLowerCase();
【单选题】 下列代码中给出正确的在方法体内抛出异常的是( )
①  new throw Exception( );
②  throw new Exception( );
③  throws IOException();
④  throws IOException;
【单选题】 Container 是下列哪一个类的子类( )。
①  Graphics
②  Window
③  Applet
④  Component
【单选题】 Java系统标准输出对象System.out使用的输出流是( )。
①  PrintStream
②  PrintWriter
③  DataOutputStream
④  FileReader
【单选题】 能读入字节数据进行Java基本数据类型判断过虑的类是( )。
①  BufferedInputStream
②  FileInputStream
③  DataInputStream
④  FileReader
【单选题】 运行下面程序时,会产生什么异常?( ) public class X7_1_5 { public static void main(String[] args) { int[] z = { 1,2,3,4 } ; int p = z[4]; int x = 0; int y = 5/x; } }
①  ArithmeticException
②  NumberFormatException
③  ArrayIndexOutOfBoundsException
④  IOException